12 lines
319 B
TypeScript
12 lines
319 B
TypeScript
|
//通过vue-router插件实现模板路由配置
|
||
|
import { createRouter, createWebHashHistory } from 'vue-router'
|
||
|
import { constantRoute } from './routes'
|
||
|
//创建路由器
|
||
|
let router = createRouter({
|
||
|
//路由模式hash
|
||
|
history: createWebHashHistory(),
|
||
|
routes: constantRoute, //路由表
|
||
|
})
|
||
|
|
||
|
export default router
|