Vue的守卫

全局守卫
1.router.beforeEach((to,from,next) => {
----------,
next();
})
2.router.afterEach((to,from) => {
----------,
})

路由独享守卫
1.const router = new Router({
routes: [
{
path:'news',
component: () => import('../components/news'),
beforeEnter: (to,from,next) => {
----------
},
beforeUpdate:---
beforeLeave:-----
}]
})

posted @ 2021-04-20 16:57  code-G  阅读(36)  评论(0编辑  收藏  举报