main.js 503 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import Vue from 'vue'
  2. import App from './App'
  3. Vue.config.productionTip = false
  4. // l=api.share
  5. // l=api.share
  6. //#ifdef MP-WEIXIN
  7. Vue.prototype.host = 'https://trade.5dev.cn/dudaowenlv/content/?'
  8. //#endif
  9. //#ifdef H5
  10. Vue.prototype.host = 'https://www.dudaowenlv.com/dudaowenlv/content/?';
  11. // import weixin from '@/components/h5Shsre/weixin.js';
  12. // import Dever_Share from '@/components/h5Shsre/share.js';
  13. //#endif
  14. App.mpType = 'app'
  15. const app = new Vue({
  16. ...App
  17. })
  18. app.$mount()