main.js 636 B

12345678910111213141516171819202122232425262728293031
  1. import App from './App'
  2. import Vue from 'vue';
  3. import Store from './store';
  4. import util from './util';
  5. import api from '@/util/api.js'
  6. import moment from 'moment';
  7. import {VueJsonp} from 'vue-jsonp'
  8. Vue.use(VueJsonp)
  9. Vue.prototype.$store=Store;
  10. Vue.prototype.$util=util;
  11. Vue.prototype.$api=api;
  12. Vue.prototype.$moment=moment;
  13. Vue.prototype.$EventBus = new Vue();
  14. // #ifndef VUE3
  15. Vue.config.productionTip = false
  16. App.mpType = 'app'
  17. const app = new Vue({
  18. ...App
  19. })
  20. app.$mount()
  21. // #endif
  22. // #ifdef VUE3
  23. import { createSSRApp } from 'vue'
  24. export function createApp() {
  25. const app = createSSRApp(App)
  26. return {
  27. app
  28. }
  29. }
  30. // #endif