AI销管
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

29 Zeilen
431 B

  1. import Vue from 'vue';
  2. import App from './App';
  3. import dayjs from './utils/dayjs.min.js'
  4. import store from './store/index.js'
  5. Vue.config.productionTip = false;
  6. Vue.prototype.$dayjs = dayjs;
  7. Vue.prototype.$store = store;
  8. // 引入全局uView
  9. import uView from 'uview-ui'
  10. Vue.use(uView);
  11. import http from '@/utils/http.js'
  12. Vue.use(http, app)
  13. App.mpType = 'app';
  14. const app = new Vue({
  15. ...App,
  16. store,
  17. });
  18. app.$mount();