码迷,mamicode.com
首页 > 其他好文 > 详细

Vue + Element 表格循环渲染

时间:2019-09-05 13:27:15      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:index   表格   传递   mic   idt   http   _id   job   mamicode   

技术图片

 

 

 

 <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 表格循环渲染

标签:index   表格   传递   mic   idt   http   _id   job   mamicode   

原文地址:https://www.cnblogs.com/wangshishuai/p/11465156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!