<Button type="warning" @click="handleSelectAll()">重置</Button>
handleSelectAll () {
this.$refs.selection.selectAll(false)
this.$refs.selection1.selectAll(false)
},
选择器重置以及输入框重置
<Button type="primary" style="width: 260px;" @click="clearClick" >重置</Button>
clearClick (e) {
console.log(e)
this.model1 = []
this.model2 = []
this.model3 = []
this.model4 = []
this.value = ''
this.value1 = ''
},