Element-ui 表格table实现单选
时间:2019-11-23 18:35:52
收藏:0
阅读:978
欢迎扫码加群,一起讨论,共同学习成长!

<el-table :data="chooseMcaterialData" highlight-current-row border @selection-change="handleSelectionChange" @current-change="chooseMcaterialChange" ref="Table" >


1 handleSelectionChange(val) { 2 if (val.length > 1) { 3 this.$refs.Table.clearSelection() 4 this.$refs.Table.toggleRowSelection(val.pop()) 5 } 6 this.multipleSelection = val; 7 },

1 chooseMcaterialChange(val){ 2 this.$refs.Table.toggleRowSelection(val) 3 },
原文:https://www.cnblogs.com/CinderellaStory/p/11918923.html
评论(0)