main.js 404 B

1234567891011121314151617181920212223242526
  1. import App from './App'
  2. // #ifndef VUE3
  3. import Vue from 'vue'
  4. // vuex
  5. import store from './store'
  6. Vue.prototype.$store = store
  7. Vue.config.productionTip = false
  8. App.mpType = 'app'
  9. const app = new Vue({
  10. store,
  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. return {
  20. store,
  21. app
  22. }
  23. }
  24. // #endif