main.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 store from './store'
  9. Vue.prototype.$store = store // 定义成全局组件
  10. import share from '@/static/js/share.js'
  11. Vue.mixin(share)
  12. //https://blog.csdn.net/qq_35432904/article/details/106330079 分享
  13. //佳链天下养车小程序账号AppID(小程序ID)wx9ca21d7c8495757e AppSecret(小程序密钥) 73a76c283f4c4a35a13ea8033527059b
  14. //车蓝图 wx693850514180f795
  15. // #ifndef VUE3
  16. import Vue from 'vue'
  17. Vue.config.productionTip = false
  18. App.mpType = 'app'
  19. const app = new Vue({
  20. ...App
  21. })
  22. app.$mount()
  23. // #endif
  24. // #ifdef VUE3
  25. import { createSSRApp } from 'vue'
  26. export function createApp() {
  27. const app = createSSRApp(App)
  28. return {
  29. app
  30. }
  31. }
  32. // #endif
  33. // Vue全局处理undefined和null转为空白字符串
  34. Vue.prototype.$praseStrEmpty = function(str) {
  35. if (typeof str === 'undefined' || str === null) {
  36. return "";
  37. }
  38. return str;
  39. }
  40. // 防止多次点击
  41. Vue.prototype.$noMultipleClicks = common.noMultipleClicks;