feat: 添加新的 Sakai Vue 布局和样式,重构基础样式,更新 README,调整插件配置
Some checks failed
/ build-and-deploy-to-vercel (push) Successful in 1m41s
/ playwright (push) Failing after 3m26s
/ depcheck (push) Successful in 1m10s

This commit is contained in:
严浩
2024-12-25 14:14:55 +08:00
parent 99c8e8d892
commit e91582db23
37 changed files with 2080 additions and 168 deletions

1
typed-router.d.ts vendored
View File

@ -19,6 +19,7 @@ declare module 'vue-router/auto-routes' {
*/
export interface RouteNamedMap {
'Root': RouteRecordInfo<'Root', '/', Record<never, never>, Record<never, never>>,
'$Path': RouteRecordInfo<'$Path', '/:path(.*)', { path: ParamValue<true> }, { path: ParamValue<false> }>,
'中文页面': RouteRecordInfo<'中文页面', '/中文-页面', Record<never, never>, Record<never, never>>,
'Api': RouteRecordInfo<'Api', '/api', Record<never, never>, Record<never, never>>,
'DataLoadersId': RouteRecordInfo<'DataLoadersId', '/data-loaders/:id', { id: ParamValue<true> }, { id: ParamValue<false> }>,