main.js 539 B

1234567891011121314151617181920212223242526272829
  1. import App from './App'
  2. import uView from 'uview-ui'
  3. Vue.use(uView)
  4. // 如此配置即可
  5. uni.$u.config.unit = 'rpx'
  6. // #ifndef VUE3
  7. import Vue from 'vue'
  8. Vue.config.productionTip = false
  9. App.mpType = 'app'
  10. const app = new Vue({
  11. ...App
  12. })
  13. import global from './utils/global.js';
  14. Vue.prototype.$global = global
  15. app.$mount()
  16. // #endif
  17. // #ifdef VUE3
  18. import { createSSRApp } from 'vue'
  19. export function createApp() {
  20. const app = createSSRApp(App)
  21. app.config.globalProperties.$global = global;
  22. return {
  23. app
  24. }
  25. }
  26. // #endif