main.js 540 B

123456789101112131415161718192021222324252627
  1. import App from './App'
  2. // #ifndef VUE3
  3. import Vue from 'vue'
  4. // ********** devapi *********
  5. // import { DEVAPI } from "@/components/scan-code/scan-code"
  6. // let devAPI = new DEVAPI()
  7. // devAPI.initDevAPI()
  8. // import {broadcastScan} from '@/components/utils/validate'
  9. // Vue.prototype.$broadcastScan=broadcastScan
  10. App.mpType = 'app'
  11. const app = new Vue({
  12. ...App
  13. })
  14. app.$mount()
  15. // #endif
  16. // #ifdef VUE3
  17. import { createSSRApp } from 'vue'
  18. export function createApp() {
  19. const app = createSSRApp(App)
  20. return {
  21. app
  22. }
  23. }
  24. // #endif