<el-table-column prop="jsonResult" label="返回值" align="left" header-align="left" :show-overflow-tooltip=true> <template slot-scope="scope"> {{scope.row.jsonResult}} </template>
时间: 2024-04-13 18:28:02 浏览: 45
获取JSON数据,返回Table标签的简单例子
4星 · 用户满意度95%
这是一个Vue.js的代码片段,用于创建一个el-table-column列,用于显示返回值。prop属性指定了要显示的数据字段,label属性指定了列的标题,align和header-align属性用于设置列的对齐方式,show-overflow-tooltip属性用于在内容溢出时显示工具提示。在template标签中,使用scope.slot-scope来获取当前行的数据,然后通过{{scope.row.jsonResult}}来显示返回值的内容。
阅读全文