<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-20 13:22:56 浏览: 57
获取JSON数据,返回Table标签的简单例子
4星 · 用户满意度95%
这段代码是用于渲染一个表格列,该列的数据来自于一个名为 "jsonResult" 的属性。表格列的标签是 "返回值",并且指定了左对齐和头部左对齐。属性 ":show-overflow-tooltip=true" 的作用是当内容过长时显示溢出的提示。在模板中,使用了作用域插槽来显示每行的 "jsonResult" 数据。
阅读全文