upload project source code

This commit is contained in:
2026-04-30 18:49:43 +08:00
commit 9b394ba682
2277 changed files with 660945 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import './style/index.css'
import './style/uni-compat.css' // uni-app 组件兼容样式
import './utils/uni-compat' // 引入 uni-app 兼容层
const app = createApp(App)
app.use(router)
app.mount('#app')
// 将 router 挂载到全局,供兼容层使用
if (typeof window !== 'undefined') {
window.vueRouter = router
}