main.js 817 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import App from './App'
  2. import request from 'common/request.js'
  3. import common from 'common/common.js'
  4. Vue.prototype.$http = request.http
  5. Vue.prototype.$request =request
  6. Vue.prototype.$common =common
  7. Vue.config.productionTip = false
  8. // #ifndef VUE3
  9. import Vue from 'vue'
  10. Vue.config.productionTip = false
  11. App.mpType = 'app'
  12. const app = new Vue({
  13. ...App
  14. })
  15. app.$mount()
  16. // #endif
  17. // #ifdef VUE3
  18. import { createSSRApp } from 'vue'
  19. export function createApp() {
  20. const app = createSSRApp(App)
  21. return {
  22. app
  23. }
  24. }
  25. // #endif
  26. // Vue全局处理undefined和null转为空白字符串
  27. Vue.prototype.$praseStrEmpty = function(str) {
  28. if (typeof str === 'undefined' || str === null) {
  29. return "";
  30. }
  31. return str;
  32. }
  33. // 防止多次点击
  34. Vue.prototype.$noMultipleClicks = common.noMultipleClicks;