mounted() {
window.addEventListener('focus', this.handleWindowFocus);
},
methods: {
handleWindowFocus() {
// 在切换回第一个页签时执行的逻辑,例如调用接口
this.fetchData(); // 调用接口的方法
},
fetchData() {
// 调用接口的逻辑
// 根据需要自行实现接口调用的代码
}
},
beforeDestroy() {
window.removeEventListener('focus', this.handleWindowFocus);
}
或者这个