admin管理员组文章数量:1352008
I have the following script:
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
export default new Router({
scrollBehavior (to, from, savedPosition) {
// purposely left blank
},
routes: [
{
path: "/",
ponent: SampleComponent
}
]
}
I would like to add an afterEach
handler to the router so that I can close any open menus when a router link is taken.
I tried to add it to the constructor but it is not a constructor argument.
I also tried:
Router.afterEach((to, from) => {
// ...
})
But I get an error:
afterEach is not a function
How do I appropriately add an afterEach
callback with this setup?
I have the following script:
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
export default new Router({
scrollBehavior (to, from, savedPosition) {
// purposely left blank
},
routes: [
{
path: "/",
ponent: SampleComponent
}
]
}
I would like to add an afterEach
handler to the router so that I can close any open menus when a router link is taken.
I tried to add it to the constructor but it is not a constructor argument.
I also tried:
Router.afterEach((to, from) => {
// ...
})
But I get an error:
afterEach is not a function
How do I appropriately add an afterEach
callback with this setup?
1 Answer
Reset to default 8You need to set the afterEach
handler on a Router
instance (the object returned via new Router()
).
You can set a reference to your instance, and add the afterEach
handler to it before it's exported:
const router = new Router({
scrollBehavior (to, from, savedPosition) {
// purposely left blank
},
routes: [
{
path: "/",
ponent: SampleComponent
}
]
});
router.afterEach((to, from) => {
// ...
});
export default router
本文标签: javascriptHow to set afterEach handler in vuerouterStack Overflow
版权声明:本文标题:javascript - How to set afterEach handler in vue-router - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743887278a2556286.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论