qingcheng-Web/greenOrange/src/router/index.ts

11 lines
388 B
TypeScript
Raw Normal View History

2025-05-15 11:51:13 +00:00
import {createRouter, createWebHashHistory} from "vue-router";
import {routes} from "./routes";
// 创建路由实例并传递 `routes` 配置
const router = createRouter({
// 4. 内部提供了 history 模式的实现。为了简单起见,我们在这里使用 hash 模式。
history: createWebHashHistory(),
routes, // `routes: routes` 的缩写
})
export default router