19 lines
410 B
TypeScript
19 lines
410 B
TypeScript
//通过vue-router插件实现模板路由配置
|
|
import { createRouter, createWebHashHistory } from 'vue-router'
|
|
import { constantRoute } from './routes'
|
|
//创建路由器
|
|
let router = createRouter({
|
|
//路由模式hash
|
|
history: createWebHashHistory(),
|
|
routes: constantRoute, //路由表
|
|
//滚动行为
|
|
scrollBehavior(){
|
|
return{
|
|
left: 0,
|
|
top: 0
|
|
}
|
|
}
|
|
})
|
|
|
|
export default router
|