quick/utils/mixins/MixinsTab.js
2022-10-26 11:14:13 +08:00

30 lines
360 B
JavaScript

// 联赛详情混入
export default {
props:{
pageIndex:Number,
tabIndex:Number
},
data() {
return {
};
},
watch:{
tabIndex(){
console.log(this.tabIndex);
console.log(this.pageIndex);
if (this.pageIndex === this.tabIndex) {
this.getData();
}
}
},
methods:{
}
};