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

Vue + Element table中的某行触发enter事件后,使该行disabled

时间:2020-06-11 21:18:59      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:model   style   index   函数   nat   font   class   native   --   

废话不罗嗦,上硬菜。

 

1.html下:
<el-table-column label="名称" sortable>
  <template slot-scope="scope"> 
    <el-input v-model="scope.row.name" :disabled="Disabled[scope.$index]" @keydown.enter.native="Enter(scope.row,scope.$index)"> </el-input>
  </template>
</el-table-column>
2.data--->>>return中:
  
Disabled:[],     // 该行是否禁止编辑
3.函数中:
Enter( row,index){
 this.Disabled[index] = true,      // 使input不可编辑
}

  


  

 

Vue + Element table中的某行触发enter事件后,使该行disabled

标签:model   style   index   函数   nat   font   class   native   --   

原文地址:https://www.cnblogs.com/xintao/p/13096027.html

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