初始化提交

This commit is contained in:
2025-10-10 08:13:38 +08:00
commit 0d4c7353f4
1361 changed files with 13945 additions and 0 deletions

18
src/App.vue Normal file
View File

@@ -0,0 +1,18 @@
<template>
<AppDataProvider>
<div>
<router-view />
</div>
</AppDataProvider>
</template>
<script>
import { AppDataProvider } from './utils/AppDataContext';
export default {
name: 'App',
components: {
AppDataProvider
}
}
</script>