AI营销辅助 普强使用
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

34 lignes
475 B

  1. import Vue from 'vue';
  2. import App from './App';
  3. import dayjs from './utils/dayjs.min.js'
  4. Vue.config.productionTip = false;
  5. Vue.prototype.$dayjs = dayjs;
  6. // 引入全局uView
  7. import uView from 'uview-ui'
  8. Vue.use(uView);
  9. import http from '@/utils/http.js'
  10. Vue.use(http, app)
  11. App.mpType = 'app';
  12. Vue.filter('toCapital',function(num){
  13. let str = ''
  14. if (num) {
  15. str = String.fromCharCode(num + 64)
  16. }
  17. return str
  18. })
  19. const app = new Vue({
  20. ...App
  21. });
  22. app.$mount();