• This project
    • Loading...
  • Sign in

Fedex / imac-vue

Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • imac-vue
  • src
  • components
  • Table
  • item.vue
  • jinhui.wang's avatar
    预审导入导出页面增加,手动配舱页面增加,公共组件增加,公共方法更新,样式更新 · 15fee510
    15fee510 Browse Files
    jinhui.wang authored 2022-01-26 16:32:09 +0800
item.vue 318 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<script>
export default {
  name: "Item",
  inheritAttrs: false,
  props: {
    dom: {
      type: Object,
      default: null,
    },
  },
  render() {
    let newDom = [];
    newDom.push(this.dom);
    return newDom;
  },
  methods: {
      change(val){
          this.$emit('change',val)
      }
  },
};
</script>