摘要:
获取checkbox中的值 VTable.vue组件 <template> <el-table :data="tableData" style="width: 100%" @selection-change="handleSelectionChange"> <!-- 添加索引 --> <el-tab 阅读全文
摘要:
自定义列的内容添加按钮或自己想要的内容 Compoents文件夹下加个 VTable.vue 文件,内容如下 <template> <el-table :data="tableData" style="width: 100%"> <!-- 添加索引 --> <el-table-column type 阅读全文
摘要:
自定义列内容 Compoents文件夹下加个 VTable.vue 文件,内容如下 <template> <el-table :data="tableData" style="width: 100%"> <!-- 添加索引 --> <el-table-column type="index" widt 阅读全文
摘要:
简单封装提起出列和数据 Compoents文件夹下加个 VTable.vue 文件,内容如下 <template> <el-table :data="tableData" style="width: 100%"> <el-table-column v-for="item in columns" :p 阅读全文