feat: add vue use and pagination

This commit is contained in:
2025-09-13 00:31:33 +08:00
parent 3f3fa302ca
commit 74b5bca9c6
9 changed files with 510 additions and 551 deletions

View File

@@ -1,6 +1,6 @@
import {
createRouter,
createWebHistory,
createWebHashHistory,
type RouteRecordRaw,
} from "vue-router";
@@ -65,7 +65,7 @@ function generateRoutesFromPages(): RouteRecordRaw[] {
const routes: RouteRecordRaw[] = generateRoutesFromPages();
const router = createRouter({
history: createWebHistory(),
history: createWebHashHistory(),
routes,
});