main.js 944 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. import share from '@/static/js/share.js'
  9. Vue.mixin(share)
  10. //https://blog.csdn.net/qq_35432904/article/details/106330079 分享
  11. // #ifndef VUE3
  12. import Vue from 'vue'
  13. Vue.config.productionTip = false
  14. App.mpType = 'app'
  15. const app = new Vue({
  16. ...App
  17. })
  18. app.$mount()
  19. // #endif
  20. // #ifdef VUE3
  21. import { createSSRApp } from 'vue'
  22. export function createApp() {
  23. const app = createSSRApp(App)
  24. return {
  25. app
  26. }
  27. }
  28. // #endif
  29. // Vue全局处理undefined和null转为空白字符串
  30. Vue.prototype.$praseStrEmpty = function(str) {
  31. if (typeof str === 'undefined' || str === null) {
  32. return "";
  33. }
  34. return str;
  35. }
  36. // 防止多次点击
  37. Vue.prototype.$noMultipleClicks = common.noMultipleClicks;