首页 > 其他 > 详细

Element UI 中scope用法

时间:2020-06-23 23:36:54      阅读:265      评论:0      收藏:0      [点我收藏+]

一个固定用法: <template slot-scope="scope">

我们主要说一下这个scope是个什么东西,scope就相当于是tableData的一行,与el-table-column唯一对应,具体试验代码如下,

     <el-table-column
        label="操作"
        width="100">
        <template slot-scope="scope">
          <el-button @click="update(scope)" type="text" size="small">编辑</el-button>
          <el-button type="text" size="small" @click="del(scope.$index)">删除</el-button>
        </template>
      </el-table-column>

js方法 console.log(scope)  通过在控制台观察,发现每一行输出的scope都是当前行的数据,包含$index:当前行的索引,column,row,store等,如下:

{row: {…}, column: {…}, $index: 0, store: TableStore, _self: VueComponent}
$index: 0
column: {…}
row: {…}
store: TableStore {__ob__: Observer}
_self: VueComponent {_uid: 486, _isVue: true, $options: {…}, _renderProxy: Proxy, _self: VueComponent, …}
__proto__: Object

 

Element UI 中scope用法

原文:https://www.cnblogs.com/baicai37/p/13185301.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!