一下方法是點擊獲取值然后添加到數組中並去重:
handleNodeClick(data) { if (data.flg == true && this.zhishi.length < 5) { this.zhishi.push(data.label);
//這里new Set是去重的 但是去重之后是個假數組 需要使用Array.from轉換為真數組 this.zhishi=Array.from(new Set(this.zhishi)); } else if (data.flg == true && this.zhishi.length >= 5) { this.$message({ message: '抱歉 只允許添加5條', type: 'warning' }); } },