diff --git a/src/assets/images/group.png b/src/assets/images/group.png new file mode 100644 index 0000000..f541968 Binary files /dev/null and b/src/assets/images/group.png differ diff --git a/src/auto-imports.d.ts b/src/auto-imports.d.ts index 9a83ee2..39054c1 100644 --- a/src/auto-imports.d.ts +++ b/src/auto-imports.d.ts @@ -3,6 +3,7 @@ // @ts-nocheck // noinspection JSUnusedGlobalSymbols // Generated by unplugin-auto-import +// biome-ignore lint: disable export {} declare global { const EffectScope: typeof import('vue')['EffectScope'] @@ -35,6 +36,7 @@ declare global { const onServerPrefetch: typeof import('vue')['onServerPrefetch'] const onUnmounted: typeof import('vue')['onUnmounted'] const onUpdated: typeof import('vue')['onUpdated'] + const onWatcherCleanup: typeof import('vue')['onWatcherCleanup'] const provide: typeof import('vue')['provide'] const reactive: typeof import('vue')['reactive'] const readonly: typeof import('vue')['readonly'] @@ -52,9 +54,12 @@ declare global { const useAttrs: typeof import('vue')['useAttrs'] const useCssModule: typeof import('vue')['useCssModule'] const useCssVars: typeof import('vue')['useCssVars'] + const useId: typeof import('vue')['useId'] + const useModel: typeof import('vue')['useModel'] const useRoute: typeof import('vue-router/auto')['useRoute'] const useRouter: typeof import('vue-router/auto')['useRouter'] const useSlots: typeof import('vue')['useSlots'] + const useTemplateRef: typeof import('vue')['useTemplateRef'] const watch: typeof import('vue')['watch'] const watchEffect: typeof import('vue')['watchEffect'] const watchPostEffect: typeof import('vue')['watchPostEffect'] @@ -101,6 +106,7 @@ declare module 'vue' { readonly onServerPrefetch: UnwrapRef readonly onUnmounted: UnwrapRef readonly onUpdated: UnwrapRef + readonly onWatcherCleanup: UnwrapRef readonly provide: UnwrapRef readonly reactive: UnwrapRef readonly readonly: UnwrapRef @@ -118,9 +124,12 @@ declare module 'vue' { readonly useAttrs: UnwrapRef readonly useCssModule: UnwrapRef readonly useCssVars: UnwrapRef + readonly useId: UnwrapRef + readonly useModel: UnwrapRef readonly useRoute: UnwrapRef readonly useRouter: UnwrapRef readonly useSlots: UnwrapRef + readonly useTemplateRef: UnwrapRef readonly watch: UnwrapRef readonly watchEffect: UnwrapRef readonly watchPostEffect: UnwrapRef diff --git a/src/pages/guest/index.vue b/src/pages/guest/index.vue index 7f59e5a..6a3cf23 100644 --- a/src/pages/guest/index.vue +++ b/src/pages/guest/index.vue @@ -2,13 +2,30 @@
+ 满身星光,不负众望 -

登录 + + + +
+ + Leaflow Amber 目前仍然处于测试阶段, +
+ 不代表最终品质。 +
+ +
+ +
@@ -21,4 +38,6 @@ const userStore = useUserStore(); const login = () => { router.push("/auth/login"); }; - \ No newline at end of file + +const showModal = ref(true); +