拷贝海亮缓存线平板

This commit is contained in:
2024-02-20 16:29:38 +08:00
commit e33e54da16
109 changed files with 12594 additions and 0 deletions

24
main.js Normal file
View File

@@ -0,0 +1,24 @@
import App from './App'
import store from '@/vuex/store.js'
// #ifndef VUE3
import Vue from 'vue'
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App,
store
})
app.$mount()
// #endif
// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app,
store
}
}
// #endif