喵币管理
技术注意点
表格的数据拼接
<el-table
:data="tableData1"
border
@cell-dblclick="celledit"
style="width: 671px;height:100px"
>
<template v-for="({ prop, label }, index) in vipConfig1">
<el-table-column :key="prop" :prop="prop" :label="label">
<template slot-scope="scope">
<el-input
class="border"
v-model.number="scope.row[index].value"
:disabled="scope.row[index].edit"
></el-input>
</template>
</el-table-column>
</template>
</el-table>传值的注意点
数组嵌套
导出表格
最后更新于