12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import App from './App'
- // #ifndef VUE3
- import Vue from 'vue'
- Vue.config.productionTip = false
- import uView from '@/uni_modules/uview-ui'
- Vue.use(uView)
- import config from 'common/config'
- Vue.prototype.config = config;
- import store from '@/store';
- // 引入uView提供的对vuex的简写法文件
- let vuexStore = require('@/store/$u.mixin.js');
- Vue.mixin(vuexStore);
- App.mpType = 'app'
- const app = new Vue({
- store,
- ...App
- })
- // http拦截器,将此部分放在new Vue()和app.$mount()之间,才能App.vue中正常使用
- import httpInterceptor from '@/common/http.interceptor.js';
- Vue.use(httpInterceptor, app);
- // http接口API抽离,免于写url或者一些固定的参数
- import httpApi from '@/common/http.api.js';
- Vue.use(httpApi, app);
- app.$mount()
- // #endif
- // #ifdef VUE3
- import {
- createSSRApp
- } from 'vue'
- export function createApp() {
- const app = createSSRApp(App)
- return {
- app
- }
- }
- // #endif
|