10 lines
358 B
JavaScript
10 lines
358 B
JavaScript
|
import { createRouter, createWebHashHistory } from 'vue-router'
|
||
|
import constRoutes from './constRoutes'
|
||
|
|
||
|
const router = createRouter({
|
||
|
// 4. 内部提供了 history 模式的实现。为了简单起见,我们在这里使用 hash 模式。
|
||
|
history: createWebHashHistory(),
|
||
|
routes: constRoutes, // `routes: routes` 的缩写
|
||
|
})
|
||
|
|
||
|
export default router
|