main.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import App from "./App";
  2. // #ifndef VUE3
  3. import Vue from "vue";
  4. import "./uni.promisify.adaptor";
  5. import uView from "@/uview-ui";
  6. import VueI18n from "vue-i18n";
  7. import messages from "./commont/messages.js";
  8. // import uView from '/uview-ui/uview-ui'
  9. Vue.use(VueI18n);
  10. Vue.config.productionTip = false;
  11. // 多国语言包配置
  12. const i18n = new VueI18n({
  13. locale: "zh-CN",
  14. // locale: "en-US",
  15. messages,
  16. });
  17. Vue.prototype._i18n = i18n;
  18. Vue.use(uView);
  19. App.mpType = "app";
  20. const app = new Vue({
  21. i18n,
  22. ...App,
  23. });
  24. // import WebIM from "./utils/WebIM.js"
  25. // Vue.use(WebIM,app)
  26. // 引入请求封装,将app参数传递到配置中
  27. // require('./commont/http.interceptor.js')(app)
  28. import httpInterceptor from '@/commont/http.interceptor.js'
  29. // 这里需要写在最后,是为了等Vue创建对象完成,引入"app"对象(也即页面的"this"实例)
  30. Vue.use(httpInterceptor, app)
  31. app.$mount();
  32. // #endif
  33. // #ifdef VUE3
  34. import {
  35. createSSRApp
  36. } from "vue";
  37. export function createApp() {
  38. const app = createSSRApp(App);
  39. return {
  40. app,
  41. };
  42. }
  43. // #endif