mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-17 02:55:25 +08:00
13 lines
369 B
TypeScript
13 lines
369 B
TypeScript
|
|
import {createRouter, createWebHashHistory} from 'vue-router';
|
||
|
|
import Home from '/@/components/Home.vue';
|
||
|
|
|
||
|
|
const routes = [
|
||
|
|
{path: '/', name: 'Home', component: Home},
|
||
|
|
{path: '/about', name: 'About', component: () => import('/@/components/About.vue')}, // Lazy load route component
|
||
|
|
];
|
||
|
|
|
||
|
|
export default createRouter({
|
||
|
|
routes,
|
||
|
|
history: createWebHashHistory(),
|
||
|
|
});
|