main.js 469 B

123456789101112131415161718192021222324252627
  1. import App from './App'
  2. // #ifndef VUE3
  3. import Vue from 'vue'
  4. import store from './store'
  5. import global from './utils/global.js';
  6. Vue.config.productionTip = false
  7. Vue.prototype.$store = store;
  8. Vue.prototype.$global=global;
  9. App.mpType = 'app'
  10. const app = new Vue({
  11. ...App
  12. })
  13. app.$mount()
  14. // #endif
  15. // #ifdef VUE3
  16. import { createSSRApp } from 'vue'
  17. export function createApp() {
  18. const app = createSSRApp(App)
  19. return {
  20. app,
  21. store,
  22. global
  23. }
  24. }
  25. // #endif