2021-10-11 15:45:59 +08:00
|
|
|
import Vue from 'vue'
|
|
|
|
|
import VueRouter from 'vue-router'
|
|
|
|
|
import { trailingSlash } from '@/util/helpers'
|
|
|
|
|
import {
|
|
|
|
|
layout,
|
|
|
|
|
route,
|
|
|
|
|
} from '@/util/routes'
|
|
|
|
|
Vue.use(VueRouter)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const router = new VueRouter({
|
|
|
|
|
mode: 'history',
|
|
|
|
|
base: process.env.BASE_URL,
|
|
|
|
|
scrollBehavior: (to, from, savedPosition) => {
|
|
|
|
|
if (to.hash) return { selector: to.hash }
|
|
|
|
|
if (savedPosition) return savedPosition
|
|
|
|
|
|
|
|
|
|
return { x: 0, y: 0 }
|
|
|
|
|
},
|
|
|
|
|
routes: [layout('Default', [
|
2021-10-11 21:50:50 +08:00
|
|
|
route('Index'),
|
|
|
|
|
route('AdmUser', null, 'AdmUser'),
|
|
|
|
|
route('AdmRole', null, 'AdmRole'),
|
2021-10-11 15:45:59 +08:00
|
|
|
])]
|
|
|
|
|
})
|
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
|
|
|
return to.path.endsWith('/') ? next() : next(trailingSlash(to.path))
|
|
|
|
|
})
|
|
|
|
|
export default router
|