javascript 带保护的路由器默认配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 带保护的路由器默认配置相关的知识,希望对你有一定的参考价值。
new Router({
mode: 'hash', // https://router.vuejs.org/api/#mode
linkActiveClass: 'open active',
scrollBehavior: () => ({ y: 0 }),
beforeEach:((to, from, next) => {
const currentUser = Auth.currentUser // whatever variable, function or object that tells if user is logged
const requiresAuth = to.matched.some(record => record.meta.requiresAuth)
if (requiresAuth && !currentUser) next('/login')
else if (!requiresAuth && currentUser) next('/')
else next()
}),
routes: [
{
path: '/login',
name: 'Login',
component: Login
},
{
path: '/',
redirect: '/dashboard',
name: 'Home',
component: DefaultContainer,
meta: {
requiresAuth: true // add this to every route that requires authentication
}
}
]
以上是关于javascript 带保护的路由器默认配置的主要内容,如果未能解决你的问题,请参考以下文章
Cisco路由器密码设置命令
为Linux新增静态路由的方法
Kong保护Admin API接口
使用OSPF与RIP动态路由协议实现全网互连互通
路由器pppoe密码如何查看
是否可以路由到使用 SSL 保护的服务?