pyt
2025-02-24 70b46c6a0f21ed39b5b7e96286f0996240954725
H5/main.js
@@ -2,23 +2,27 @@
// #ifndef VUE3
import Vue from 'vue'
import store from '@/store/index.js'
import './uni.promisify.adaptor'
Vue.config.productionTip = false
Vue.prototype.$store = store
import uView from '@/uni_modules/uview-ui'
App.mpType = 'app'
const app = new Vue({
  ...App
   ...App
})
app.$mount()
// #endif
Vue.use(uView)
// #ifdef VUE3
import { createSSRApp } from 'vue'
import {
   createSSRApp
} from 'vue'
export function createApp() {
  const app = createSSRApp(App)
  return {
    app
  }
   const app = createSSRApp(App)
   return {
      app
   }
}
// #endif