first commit

This commit is contained in:
PC-202306242200\Administrator
2026-03-28 23:10:55 +08:00
commit 1c24452b6c
1735 changed files with 150474 additions and 0 deletions

37
main.js Normal file
View File

@@ -0,0 +1,37 @@
// #ifndef VUE3
import Vue from 'vue'
import App from './App'
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App
})
import share from "./utils/mpShare.js";
Vue.mixin(share)
app.$mount()
// #endif
// #ifdef VUE3
import {
createSSRApp
} from 'vue'
import App from './App.vue'
import * as Pinia from 'pinia'
import share from "./utils/mpShare.js";
export function createApp() {
const app = createSSRApp(App)
app.mixin(share)
app.use(Pinia.createPinia())
return {
app
}
}
// #endif