Merge branch 'feat/RBAC' into main

This commit is contained in:
WANGFAN\wangf 2025-04-10 16:57:53 +08:00
commit 9ae99cda13
2 changed files with 17 additions and 16 deletions

1
.gitignore vendored
View File

@ -10,6 +10,7 @@ lerna-debug.log*
node_modules node_modules
dist dist
dist.zip dist.zip
dist.7z
dist-ssr dist-ssr
*.local *.local

32
src/components.d.ts vendored
View File

@ -5,22 +5,22 @@
// Read more: https://github.com/vuejs/core/pull/3399 // Read more: https://github.com/vuejs/core/pull/3399
export {} export {}
declare module 'vue' { declare module "vue" {
export interface GlobalComponents { export interface GlobalComponents {
BarcodeDraw: typeof import('./components/barcode-draw/index.vue')['default'] BarcodeDraw: (typeof import("./components/barcode-draw/index.vue"))["default"];
CodeView: typeof import('./components/code-view/index.vue')['default'] CodeView: (typeof import("./components/code-view/index.vue"))["default"];
ExternalLinkPage: typeof import('./components/external-link-page/index.vue')['default'] ExternalLinkPage: (typeof import("./components/external-link-page/index.vue"))["default"];
FillPage: typeof import('./components/fill-page/index.vue')['default'] FillPage: (typeof import("./components/fill-page/index.vue"))["default"];
InternalLinkPage: typeof import('./components/internal-link-page/index.vue')['default'] InternalLinkPage: (typeof import("./components/internal-link-page/index.vue"))["default"];
LangProvider: typeof import('./components/lang-provider/index.vue')['default'] LangProvider: (typeof import("./components/lang-provider/index.vue"))["default"];
MainTransition: typeof import('./components/main-transition/index.vue')['default'] MainTransition: (typeof import("./components/main-transition/index.vue"))["default"];
PinyinPro: typeof import('./components/pinyin-pro/index.vue')['default'] PinyinPro: (typeof import("./components/pinyin-pro/index.vue"))["default"];
QrcodeDraw: typeof import('./components/qrcode-draw/index.vue')['default'] QrcodeDraw: (typeof import("./components/qrcode-draw/index.vue"))["default"];
RouterLink: typeof import('vue-router')['RouterLink'] RouterLink: (typeof import("vue-router"))["RouterLink"];
RouterView: typeof import('vue-router')['RouterView'] RouterView: (typeof import("vue-router"))["RouterView"];
SelectIcon: typeof import('./components/select-icon/index.vue')['default'] SelectIcon: (typeof import("./components/select-icon/index.vue"))["default"];
SvgAndIcon: typeof import('./components/svg-and-icon/index.vue')['default'] SvgAndIcon: (typeof import("./components/svg-and-icon/index.vue"))["default"];
SvgIcon: typeof import('./components/svg-icon/index.vue')['default'] SvgIcon: (typeof import("./components/svg-icon/index.vue"))["default"];
VerifyCode: typeof import('./components/verify-code/index.vue')['default'] VerifyCode: (typeof import("./components/verify-code/index.vue"))["default"];
} }
} }