使用v-for循环
缺点:数据不可单个处理 一处理就要全部重写
<el-table
:data="tableData"
stripe
style="width: 100%"
:header-cell-style="{ background: '#eef1f6', color: '#606266' }"
>
<el-table-column
v-for="(item, index) in tableColumns"
:key="index"
:label="item.label"
:prop="item.prop"
>
<!-- 数据不可编辑,展示前应该处理好 -->
</el-table-column>
<el-table-column fixed="right" label="操作" width="120">
<template slot-scope="scope">
<el-button @click="handleClick(scope.row)" type="text" size="small"
>编辑</el-button
>
<el-divider direction="vertical"></el-divider>
<el-button