1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > element ui 组件vue组件使用slot-scope=“scop“根据ID改变地址

element ui 组件vue组件使用slot-scope=“scop“根据ID改变地址

时间:2022-08-21 01:25:12

相关推荐

element ui 组件vue组件使用slot-scope=“scop“根据ID改变地址

<template><!-- <div>权限列表</div> --><div><el-table :data="tableData" stripe style="width: 100%"><el-table-column prop="date" label="日期" width="180"> </el-table-column><el-table-column prop="name" label="姓名" width="180"> </el-table-column><el-table-column prop="address" label="地址"><template slot-scope="scop">{{scop.row.address=="1"?"上海市":"普陀区"}}</template></el-table-column></el-table></div></template><script>export default {name: "PermissionList",data() {return {tableData: [{date: '-05-02',name: '王小虎',address: '1'}, {date: '-05-04',name: '王小虎',address: '2'}, {date: '-05-01',name: '王小虎',address: '1'}, {date: '-05-03',name: '王小虎',address: '1'}]}}};</script>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。