vue+element table的二次封装

iTable.vue文件





在组件中使用

先引入组件 

import iTable from "@/components/i-table";

注册组件

components: { iTable }

使用

html代码

      

        
          
        
        
          
        
      

script代码

    colConfigs: [
        
        { slot: "operate" },
        { prop: "name",label: "姓名" },
        { slot: "sex" },
        { prop: "birth", label: "出生日期" },
        { prop: "age", label: "年龄" },
        { prop: "addr", label: "地址" },
        
      ],

就可以使用了

你可能感兴趣的:(vue)