在使用table组件时.
<Table :columns="columns" :data="data" size="small"
style="margin-top: 30px" :height="436"
@on-select="checkTable" @on-select-all="checkTable"></Table>
在勾选时会触发,返回的selection也确实是选中行数据。
但是在取消勾选时 selection 的内部数据没有同步更新,依旧是开始勾选的数据。
checkTable(selection){
this.selection=selection;
},
这个问题很严重,求解决。如果勾选与取消的数据与selection不同步的话,那么这个selection就没什么意义了。
使用change.
解决之~