main.js 716 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // import App from './App'
  2. // // #ifndef VUE3
  3. // import Vue from 'vue'
  4. // Vue.config.productionTip = false
  5. // App.mpType = 'app'
  6. // const app = new Vue({
  7. // ...App
  8. // })
  9. // app.$mount()
  10. // // #endif
  11. // // #ifdef VUE3
  12. // import { createSSRApp } from 'vue'
  13. // export function createApp() {
  14. // const app = createSSRApp(App)
  15. // return {
  16. // app
  17. // }
  18. // }
  19. // // #endif
  20. import Vue from 'vue'
  21. import App from './App'
  22. Vue.config.productionTip = false
  23. App.mpType = 'app'
  24. // 引入全局uView
  25. import uView from 'uview-ui'
  26. Vue.use(uView)
  27. // 引入全局tabbar
  28. import tabBar from 'components/tabbar.vue'
  29. Vue.component('tab-bar', tabBar)
  30. const app = new Vue({
  31. ...App
  32. })
  33. app.$mount()