mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
17 lines
417 B
TypeScript
17 lines
417 B
TypeScript
import type { App } from 'vue'
|
|
import { createRouter, createWebHashHistory } from 'vue-router'
|
|
import { constantRoutes } from './routes'
|
|
|
|
import type { Router } from 'vue-router'
|
|
|
|
export const router = createRouter({
|
|
history: createWebHashHistory(),
|
|
routes: constantRoutes,
|
|
scrollBehavior: () => ({ left: 0, top: 0 }),
|
|
})
|
|
|
|
// setup router
|
|
export const setupRouter = (app: App<Element>) => {
|
|
app.use(router)
|
|
}
|