1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-04-30 04:28:25 +08:00
Files
AzurLaneAutoScript/webapp/packages/renderer/src/router.ts

12 lines
253 B
TypeScript
Raw Normal View History

2024-06-05 23:20:28 +08:00
import {createRouter, createWebHashHistory} from 'vue-router';
import Alas from '/@/components/Alas.vue';
const routes = [
2025-09-03 13:59:51 +08:00
{path: '/', name: 'Alas', component: Alas},
2024-06-05 23:20:28 +08:00
];
export default createRouter({
routes,
history: createWebHashHistory(),
});