<el-table
:data=“tableData”
border
style=“width: 100%”>
<el-table-column
fixed
prop=“id”
label=“水果ID”
width=“160”>
<el-table-column
prop=“name”
label=“水果名称”
width=“160”>
<el-table-column
prop=“sale”
label=“水果销量”
width=“160”>
<el-table-column
prop=“icon”
label=“图片”
width=“160”>
<el-table-column
fixed=“right”
label=“操作”
width=“100”>
<el-button @click=“fruitDelete(scope.row)” type=“text” size=“small”>删除
<el-button @click=“findFruit(scope.row)” type=“text” size=“small”>编辑
<el-button type=“primary” @click=“onSubmit(‘form’)”>立即修改
<el-button @click=“onSub