vue 点击事件添加并去重 在工作中遇到点击后需要往数组添加某个对象,并且去重。现将我的解决方案分享给大家 在methods中添加点击事件的方法 handleNodeClick(data) { this.headerData.push(event); this.headerData = Array.from(new Set(this.headerData)); },