Vue router gets vuex state

how can I get the state of vuex in vue-router?

router.beforeEach I want to make login judgment in this. How can I get the user information in state?

Oct.27,2021

your store file:

const store = new Vuex.Store({...})
export default store

your routing file:

import store from 'store'

router.beforeEach((to, from, next) => {
    console.log(store.state.user_info)
})
Menu