自定義表頭,但是checkbox綁定值變化,但是頁面不變化
修改方法:將solt="header",改為 #header
<template #header>
<el-checkbox v-model="checkAll" @change="changeAll()">
<span style="margin-left:5px;">刪除</span>
</el-checkbox>
</template>
computed: {
checkAll() {
let All = true;
this.linkList.forEach(item => {
if (item.delete == false) {
//如果有一個不勾選
All = false;
}
});
return All;
}
},