vue router的嵌套使用 按需加载

vue做后台管理系统

//路由中嵌套路由
const router = new VueRouter({
  routes: [
    { path: '/user/:id', component: User,
      children: [
        {
          // 当 /user/:id/profile 匹配成功,
          // UserProfile 会被渲染在 User 的 <router-view> 中
          path: 'profile',
          component: UserProfile
        },
        {
          // 当 /user/:id/posts 匹配成功
          // UserPosts 会被渲染在 User 的 <router-view> 中
          path: 'posts',
          component: UserPosts
        }
      ]
    }
  ]
})
this.push( {path: '/user/'你好'})---- { path: '/user/:id', component: User} 动态路由匹配
this.$router.push('/user/'你好')---- { path: '/user/:id', component: User} 动态路由匹配
  <router-link :to="{path:'/user/'你好'}"> Foo</router-link> ---- { path: '/user/:id', component: User} 动态路由匹配

参考:https://router.vuejs.org/zh/

{
    path: '/home',
    name: 'home',
    component:resove => require(['@/components/home'],resolve)
}
const test1 = ()=>import('@/components/test1.vue') 
{
    path: '/', component: Main,
    children: [
        {
            path: '/help_document',
            component: Help_Document,
        },
        //我的任务-所有工作流
        {
            path: 'work', component: Work_Main,
            children: [
                {
                    path: 'task',
                    component: Work_MyTask
                },
                {
                    path: 'release',
                    component: Work_MyRelease
                }
          }
  }

vue 黑白名单及动态加载

router.beforeEach(async(to, from, next) => {
      // 进度条开始
      NProgress.start()
    
    
      // 确认用户是否已登录(获取它的token值,这里的getToken()是封装好的一个方法)
      const hasToken = getToken()
    
    
      if (hasToken) {//如果有token,说明是登录状态
        if (to.path === '/login') {//路由是/login页,那么直接跳转到首页
          next({ path: '/' })
          NProgress.done()  //进度条结束
        } else {//如果不是登录页
          // 确定用户是否已通过getInfo获得其权限角色
          const hasRoles = store.getters.roles && store.getters.roles.length > 0
          if (hasRoles) {//如果通过角色权限,继续访问
            next()      
          } else {//如果没有通过角色权限
            // alert('没有role')
            console.log('获取角色')
            try {
              // get user info
              // note: roles must be a object array! such as: ['admin'] or ,['developer','editor']
              const { roles } = await store.dispatch('user/getInfo')
    
              // generate accessible routes map based on roles
              const accessRoutes = await store.dispatch('permission/generateRoutes', roles)
    
              // dynamically add accessible routes
              router.addRoutes(accessRoutes)
    
              // hack method to ensure that addRoutes is complete
              // set the replace: true, so the navigation will not leave a history record
              next({ ...to, replace: true })
            } catch (error) {
              // remove token and go to login page to re-login
              await store.dispatch('user/resetToken')
              Message.error(error || 'Has Error')
              next(`/login?redirect=${to.path}`)
              NProgress.done()
            }
          }
        }
      } else {//如果没有token
        /* has no token*/
        // alert('没有token to.path=' + to.path)
    
        if (whiteList.indexOf(to.path) !== -1) {//白名单中有的路由,可以继续访问
          // in the free login whitelist, go directly
          next()
        } else {//否则,白名单中没有的路由,跳回首页
          // other pages that do not have permission to access are redirected to the login page.
          next(`/login?redirect=${to.path}`)
          NProgress.done()
        }
      }
    })
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

web修理工

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值