main.js 540 B

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