数据同步

This commit is contained in:
2026-01-05 10:19:51 +08:00
parent ba0ebcf273
commit 408c6a2029
206 changed files with 52458 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<template>
<router-view />
</template>
<script setup lang="ts">
// App 根组件
import { onMounted } from 'vue'
import { useUserStore } from '@/store'
const userStore = useUserStore()
onMounted(() => {
// 初始化 token
userStore.initToken()
})
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#app {
width: 100%;
min-height: 100vh;
}
</style>