[Vuejs]-Mounted Push is not redirecting from landing page but refresh is working

0👍

You can use beforeMounted method and bind data variable in data object as below;

data() {
  return {
    siteIsMaintenanceMode: this.$store.getters.getMaintenancMode
  };
},
beforeMount(){
  if (siteIsMaintenanceMode) {
    this.$router.push({ path: "/maintenance" });
  }
},
mounted() {
  this.preloadRoutes()
}

Hope this helps!

Leave a comment