first commit

This commit is contained in:
2024-04-08 21:34:02 +08:00
commit a41a7f32ab
223 changed files with 44629 additions and 0 deletions

23
src/App.vue Normal file
View File

@@ -0,0 +1,23 @@
<template>
<a-config-provider update-at-scroll>
<router-view></router-view>
<template #loading>
<img src="/static/images/loading.gif" class="loading-icon" alt="loading" />
</template>
</a-config-provider>
</template>
<script setup lang="ts">
import { useAppStore } from '@/stores'
defineOptions({ name: 'App' })
const appStore = useAppStore()
appStore.initTheme()
</script>
<style lang="scss" scoped>
.loading-icon {
width: 30px;
}
</style>