main.js 671 B

123456789101112131415161718192021222324252627282930313233
  1. import App from './App'
  2. import store from './store'
  3. // #ifndef VUE3
  4. import Vue from 'vue'
  5. import './uni.promisify.adaptor'
  6. // 将工具函数挂载到原型上面去
  7. import { showToast,loading } from '@/utils/index'
  8. Vue.prototype.$showToast = showToast
  9. Vue.prototype.$loading = loading
  10. // 将本地存储的函数挂载到this上面去
  11. import Cache from '@/utils/cache.js'
  12. Vue.prototype.$cache = Cache
  13. Vue.config.productionTip = false
  14. App.mpType = 'app'
  15. const app = new Vue({
  16. ...App
  17. })
  18. app.$mount()
  19. // #endif
  20. // #ifdef VUE3
  21. import { createSSRApp } from 'vue'
  22. export function createApp() {
  23. const app = createSSRApp(App)
  24. return {
  25. app,
  26. store
  27. }
  28. }
  29. // #endif