main.js 871 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import '@/common/pc'
  2. import App from './App'
  3. import request from 'common/request.js'
  4. Vue.prototype.$http = request.http
  5. // #ifndef VUE3
  6. import Vue from 'vue'
  7. Vue.config.productionTip = false
  8. App.mpType = 'app'
  9. const app = new Vue({
  10. ...App
  11. })
  12. app.$mount()
  13. // #endif
  14. // #ifdef VUE3
  15. import { createSSRApp } from 'vue'
  16. export function createApp() {
  17. const app = createSSRApp(App)
  18. return {
  19. app
  20. }
  21. }
  22. // #endif
  23. // Vue全局处理undefined和null转为空白字符串
  24. Vue.prototype.$praseStrEmpty = function(str) {
  25. if (typeof str === 'undefined' || str === null) {
  26. return "";
  27. }
  28. return str;
  29. }
  30. // import marked from 'marked'
  31. // import uParse from '@/components/gaoyia-parse/parse.vue'
  32. // export default {
  33. // components: {
  34. // uParse
  35. // },
  36. // data () {
  37. // return {
  38. // article: marked(`#hello, markdown!`)
  39. // }
  40. // }
  41. // }