我有App.vue文件,我挂载的功能将重定向到维护页面,如果维护设置为真。当主页登陆时,它不会重定向,但当我刷新页面时,它会重定向到维护页面。
mounted() {
const siteIsMaintenanceMode = this.$store.getters.getMaintenancMode;
if (siteIsMaintenanceMode) {
this.$router.push({ path: "/maintenance" });
}
this.preloadRoutes();
},发布于 2019-09-28 13:47:17
您可以在data对象中使用beforeMounted方法绑定数据变量,如下所示;
data() {
return {
siteIsMaintenanceMode: this.$store.getters.getMaintenancMode
};
},
beforeMount(){
if (siteIsMaintenanceMode) {
this.$router.push({ path: "/maintenance" });
}
},
mounted() {
this.preloadRoutes()
}希望这能有所帮助!
https://stackoverflow.com/questions/58141098
复制相似问题