mirror of
https://github.com/zclzone/vue-naive-admin.git
synced 2025-05-01 06:39:01 +08:00
16 lines
282 B
JavaScript
16 lines
282 B
JavaScript
export function createPageLoadingGuard(router) {
|
|
router.beforeEach(() => {
|
|
window.$loadingBar?.start()
|
|
})
|
|
|
|
router.afterEach(() => {
|
|
setTimeout(() => {
|
|
window.$loadingBar?.finish()
|
|
}, 200)
|
|
})
|
|
|
|
router.onError(() => {
|
|
window.$loadingBar?.error()
|
|
})
|
|
}
|