初始化移动端提交

This commit is contained in:
chenbowen
2025-09-30 00:08:23 +08:00
parent 08784ca8f3
commit f2ffc65094
406 changed files with 55626 additions and 93 deletions

18
main.js Normal file
View File

@@ -0,0 +1,18 @@
import App from './App';
import { createSSRApp } from 'vue';
import { setupPinia } from './sheep/store';
import uviewPlus from 'uview-plus';
export function createApp() {
const app = createSSRApp(App);
// 使用 uview-plus
app.use(uviewPlus);
setupPinia(app);
return {
app,
};
}