1
xuxueyang
2024-08-13 c9ece393fc028ffecca0915d1b9af62d51b5aef6
main.js
@@ -1,4 +1,4 @@
// #ifndef VUE3
import Vue from 'vue'
import App from './App'
import store from './store'
@@ -13,8 +13,8 @@
Vue.prototype.$storage = storage
import util from './plugins/util'
Vue.prototype.$util = util
import self_base from './common/self_base.js'
Vue.use(self_base);
// import self_base from './common/self_base.js'
// Vue.use(self_base);
import mixinsCommon from './mixin/mixin.js'
Vue.mixin(mixinsCommon)
@@ -92,17 +92,3 @@
   ...App
})
app.$mount()
// #endif
// #ifdef VUE3
import {
   createSSRApp
} from 'vue'
import App from './App.vue'
export function createApp() {
   const app = createSSRApp(App)
   return {
      app
   }
}
// #endif