1 this.$nextTick(() => { 2 this.$refs.navTabs.$refs.nav.$nextTick(() => { 3 var target = document.getElementsByClassName("el-tabs__item"); 4 for (let i = 0; i < target.length; i++) { 5 target[i].addEventListener("mouseover", () => { 6 this.activeName = target[i].getAttribute('id').split('-')[1] 7 this.getFundList(this.activeName) 8 }); 9 } 10 }); 11 });