v-loding页面白屏动画变化监听路由,增加延时器的方法
2022-10-01 本文已影响0人
43e1f527c136
methods: {
tiem(){
setTimeout(() => {
this.fullscreenLoading=false
}, 500);
},
},
watch: {
$route(){
this.fullscreenLoading=true
this.tiem()
}
}
methods: {
tiem(){
setTimeout(() => {
this.fullscreenLoading=false
}, 500);
},
},
watch: {
$route(){
this.fullscreenLoading=true
this.tiem()
}
}