Demo效果:
"recording.gif" (https://wmprod.oss-cn-shanghai.aliyuncs.com/c/user/20241010/de658fe0f6877794d9af679ed3795b41.png)
Demo代码:
export default {
data() {
return {
options: [{
value: '选项1',
label: '黄金糕'
}, {
value: '选项2',
label: '双皮奶'
}, {
value: '选项3',
label: '蚵仔煎'
}, {
value: '选项4',
label: '龙须面'
}, {
value: '选项5',
label: '北京烤鸭'
}],
value5: [],
originVal: []
}
},
methods: {
change() {
if (this.value5.length === this.options.length) {
this.originVal = [...this.value5]
this.value5 = ['全部']
}
console.log(this.value5, this.originVal);
},
removeTag(value) {
if (value === '全部') {
this.originVal = []
console.log(this.value5, this.originVal);
this.value5 = []
}
}
}
}