main.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 mixins from './mixin/index.js';
  9. import i18n from './locale/index'
  10. import uView from "uview-ui";
  11. Vue.use(uView)
  12. import gyq_utils from '@/utils/gyq_utils'
  13. Vue.use(gyq_utils)
  14. import Navigation from '@/components/navBar/navigation.vue'
  15. Vue.component('Navigation', Navigation);
  16. uni.addInterceptor('request', {
  17. fail: (err) => {
  18. uni.hideLoading()
  19. return false; // 阻止默认弹窗
  20. }
  21. });
  22. import Vue from 'vue';
  23. Vue.mixin(Mixin);
  24. Vue.mixin(mixins);
  25. Vue.config.productionTip = false;
  26. App.mpType = 'app';
  27. const app = new Vue({
  28. i18n,
  29. ...App
  30. });
  31. app.$mount();
  32. // // #ifdef VUE3
  33. // import { createSSRApp } from 'vue';
  34. // import {
  35. // createI18n
  36. // } from 'vue-i18n'
  37. // const i18n = createI18n(i18nConfig)
  38. // export function createApp() {
  39. // const app = createSSRApp(App);
  40. // app.use(i18n)
  41. // app.mixin(Mixin);
  42. // return {
  43. // app
  44. // };
  45. // }
  46. // // #endif