Vue + Element 表格循环渲染
Posted wangshishuai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue + Element 表格循环渲染相关的知识,希望对你有一定的参考价值。
<el-table-column label="查看职位" width="250"> <slot slot-scope="scope"> <el-link style="padding:0 5px" v-for="(v,index) in scope.row.job_ids" v-if=‘scope.row.job_ids !=""‘ type="primary" >职位index</el-link> </slot> </el-table-column> <el-table-column prop="route_path" label="查看门店" width="250"> <slot slot-scope="scope"> <el-link style="padding:0 5px" v-for="(v,index) in scope.row.job_ids" v-if=‘scope.row.job_ids !=""‘ type="primary" >职位index</el-link> </slot> </el-table-column>
主要是 运用 slot标签 + 作用域插槽 slot-scope + v-for 将子组件的值渲染传递给父组件
以上是关于Vue + Element 表格循环渲染的主要内容,如果未能解决你的问题,请参考以下文章
vue element ui 实现动态表格/表单(新增/删除行)
封装element中的table表格,实现可控并动态渲染(动态表头)