1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| <template> <el-table :data="data"> <af-table-column label="列1" prop="field1" /> <af-table-column label="列2" prop="field2" /> <af-table-column label="列3"> <template slot-scope="scope"> <div>自定义显示值31: {{ scope.row.field31 }}</div> <div>自定义显示值32: {{ scope.row.field32 }}</div> </template> </af-table-column> <el-table-column label="操作"> <template slot-scope="scope"> <el-button @click="removeItem">删除</el-button> </template> </el-table-column > </el-table> </template>
|