AI营销辅助 普强使用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
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();