el-table-column的prop拼接字符串
近刚学Vue,使用的elementui组件库,用到了table表格组件标签遇到个问题就是其中有个要展示的数据来自接口返回的两个字段原用法是:<el-table :data="tableData(表格数据来源)" stripe style="width: 100%"><el-table-column prop="date(表格数据来源的某个字段)" label="日期(表格头部)"
·
近刚学Vue,使用的elementui组件库,用到了table表格组件标签
遇到个问题就是其中有个要展示的数据来自接口返回的两个字段
原用法是:
<el-table :data="tableData(表格数据来源)" stripe style="width: 100%">
<el-table- column prop="date(表格数据来源的某个字段)" label="日期(表格头部)" width="180"></el-table-column>
</el-table>
原以为prop=" “中只能放一个字段的数据,想放两个字段数据的话,要把 </标签再用标签包裹才行如下:
记得原来<el-table-column></el-table-column>标签中的prop=” "中放两个字段名哈~还有<template slot-scope=“scope”></template>中的slot-scope=“scope” 最后通过{{scope.row.字段名}}就行啦~:D
更多推荐
已为社区贡献1条内容
所有评论(0)