2 个回答

已解决,我的是因为写了按需export default new VueRouter({
mode: "history", // 去掉路由地址的#
routes: [

//    ‘/’为默认加载页面
{ path: "/", component: IntelligentRegistration },
{ path: "/IntelligentRegistration", component: IntelligentRegistration },
{ path: "/newsAndInformation", component: newsAndInformation },
{ path: "/personal", component: personal },
{ path: "/generalRegistration", component: generalRegistration },
{ path: "**", redirect: "IntelligentRegistration" } //错误路由 重新定向

]
});加载路由,所以只有主页得到了后台传来了权限,其他页没有

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题