Vue Router 跳转拦截

所有路由需要验证登录

router.beforeEach((to, from, next) => {
    //设置延时器让created先执行在进行路由跳转
    setTimeout((res) => {
        // 判断该路由是否需要登录权限
        if(to.name == 'login'){
            next()
        }else{
            if (store.state.isLogin) { 
                next();
            } else {
                next({
                    path: '/login',
                    query: {
                        redirect: to.fullPath
                    } // 将跳转的路由path作为参数,登录成功后跳转到该路由
                })
            }
        }
    }, 100);
})

部分路由跳转验证登录

router.beforeEach((to, from, next) => {
    //设置延时器让created先执行在进行路由跳转
    setTimeout((res) => {
        // 判断该路由是否需要登录权限
        if (to.meta.requireAuth) {
        // 通过vuex state获取当前的状态是否存在
            if (store.state.isLogin) { 
                next();
            } else {
                next({
                    path: '/login',
                    query: {
                        redirect: to.fullPath
                    } // 将跳转的路由path作为参数,登录成功后跳转到该路由
                })
            }
        } else {
          next();
        }
    }, 100);
})

你可能感兴趣的:(vue)