记录一下小技巧,使用slot-scope和v-for遍历数据为树形表格。
<el-table :data="mealData" row-key="id" default-expand-all :tree-props="{children: 'children'}" class="popoverTable">
<el-table-column width="210" property="product" label="菜品名称"></el-table-column>
<el-table-column width="260" label="菜品版本" style="white-space: pre-line;">
<template slot-scope="scope">
<p v-for="(item, index) in scope.row.version" :key="index">{{item}}</p>
</template>
</el-table-column>
</el-table>
let mealData = {
"children": [
{
"id": 10001,
"product": "干锅肥牛",
"version": [
"10001-v1"
]
},
{
"id": 10002,
"product": "攸县香干",
"version": [
"10002-v1"
]
}
],
"count": 2,
"id": 181,
"product": "湘城小厨"
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/151151.html