You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
599 B

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
  1. import App from './App'
  2. import uviewPlus from '@/uni_modules/uview-plus'
  3. import request from './config/request.js'
  4. import { goPage } from '@/utils/utils.js'
  5. // // #ifndef VUE3
  6. // import Vue from 'vue'
  7. // import './uni.promisify.adaptor'
  8. // Vue.config.productionTip = false
  9. // App.mpType = 'app'
  10. // const app = new Vue({
  11. // ...App
  12. // })
  13. // app.$mount()
  14. // // #endif
  15. // #ifdef VUE3
  16. import { createSSRApp } from 'vue'
  17. export function createApp() {
  18. const app = createSSRApp(App)
  19. app.config.globalProperties.$goPage = goPage
  20. app.use(uviewPlus)
  21. request(app)
  22. return {
  23. app
  24. }
  25. }
  26. // #endif