[Vuejs]-Vue-router navigation Guard

0👍

first i think you are using pre-route guard wrong. keyword in here is beforeEnter and not beforeRouteEnter based on docs.

also you need to export and import properly like this:

  • export
export const store = ...
  • import
import {store} from '@/main'

0👍

this

solved my problem, copy that

Leave a comment