//原本写法
watch: {
'$route.path': function (newVal, oldVal) {
if (newVal === '/HomePageData') {
this.isBgc = true;
} else {
this.isBgc = false;
}
}, }
// 修改写法
watch: { '$route.path': { immediate: true, handler(newVal, oldVal) { if (newVal === '/HomePageData') { this.isBgc = true; } else { this.isBgc = false; } } } }