naive-ui/demo/routes/router.js

30 lines
629 B
JavaScript
Raw Normal View History

import { createRouter, createWebHistory } from 'vue-router'
2020-03-20 17:32:05 +08:00
2020-09-27 22:27:25 +08:00
export const loadingBarApiRef = {}
export default function createDemoRouter (app, routes) {
const router = createRouter({
history: createWebHistory(),
2020-03-20 17:32:05 +08:00
routes
})
2020-09-27 22:27:25 +08:00
router.beforeEach(function (to, from, next) {
2020-10-06 23:23:36 +08:00
if (!from || to.path !== from.path) {
if (loadingBarApiRef.value) {
loadingBarApiRef.value.start()
}
2020-09-27 22:27:25 +08:00
}
next()
})
router.afterEach(function (to, from) {
2020-10-06 23:23:36 +08:00
if (!from || to.path !== from.path) {
2020-09-27 22:27:25 +08:00
if (loadingBarApiRef.value) {
loadingBarApiRef.value.finish()
}
}
})
2020-03-20 17:32:05 +08:00
return router
}