main.js 653 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import App from './App'
  2. // #ifndef VUE3
  3. import Vue from 'vue'
  4. import './uni.promisify.adaptor'
  5. // 将工具函数挂载到原型上面去
  6. import { showToast,loading } from '@/utils/index'
  7. Vue.prototype.$showToast = showToast
  8. Vue.prototype.$loading = loading
  9. // 挂载全局的 mixin
  10. import mixin from '@/mixins/index'
  11. Vue.mixin(mixin)
  12. // 挂载 Vuex
  13. import store from './store'
  14. Vue.config.productionTip = false
  15. App.mpType = 'app'
  16. const app = new Vue({
  17. ...App,
  18. store,
  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