【发布时间】:2021-11-15 07:05:46
【问题描述】:
您好,我收到此错误无法读取未定义的属性(读取“$store”): 这是我的路由器(index.js)
{
path: '/',
name: 'login',
component: () => import( /* webpackChunkName: "hours" */ '../views/login.vue'),
meta: {
hideNavbar: true,
},
beforeEnter: (to, from, next) => {
if (this.$store.state.authenticated.admin === true) {
next('/home');
} else {
next(false);
}
}
在上面的代码中,我正在努力导航到主页...收到此错误。 这里`TypeError:无法读取未定义的属性(读取'$store')
【问题讨论】:
-
谁能帮帮我
-
你在什么地方混店吗?
标签: vue.js vuex vue-router