9 lines
110 B
TypeScript
9 lines
110 B
TypeScript
|
|
import router from './index'
|
||
|
|
|
||
|
|
router.beforeEach((to, from, next) => {
|
||
|
|
next()
|
||
|
|
})
|
||
|
|
|
||
|
|
router.afterEach(() => {
|
||
|
|
})
|