main.js 913 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import App from './App';
  2. // Api函数polyfill(目前为实验版本,如不需要,可删除!)';
  3. import Polyfill from './polyfill/polyfill';
  4. // import customTabBar from './custom-tab-bar/index.vue';
  5. Polyfill.init();
  6. // 全局mixins,用于实现setData等功能,请勿删除!';
  7. import Mixin from './polyfill/mixins';
  8. import i18n from './locale/index'
  9. import uView from "uview-ui";
  10. Vue.use(uView);
  11. // #ifndef VUE3
  12. import Vue from 'vue';
  13. Vue.mixin(Mixin);
  14. Vue.config.productionTip = false;
  15. App.mpType = 'app';
  16. const app = new Vue({
  17. i18n,
  18. ...App
  19. });
  20. app.$mount();
  21. // #endif
  22. // // #ifdef VUE3
  23. // import { createSSRApp } from 'vue';
  24. // import {
  25. // createI18n
  26. // } from 'vue-i18n'
  27. // const i18n = createI18n(i18nConfig)
  28. // export function createApp() {
  29. // const app = createSSRApp(App);
  30. // app.use(i18n)
  31. // app.mixin(Mixin);
  32. // return {
  33. // app
  34. // };
  35. // }
  36. // // #endif