1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import Vue from 'vue';
- import App from './App';
- import uView from 'uview-ui';
- import { router, RouterMount } from '@/router'; //路径换成自己的
- import store from '@/store';
- import cache from '@/mixin/cache';
- import empty from '@/components/empty';
- App.mpType = 'app';
- import '@/static/iconfont.css' // iconfont的引入
- Vue.use(router);
- Vue.use(uView);
- Vue.mixin(cache);
- Vue.component('empty', empty);
- Vue.config.productionTip = false;
- App.mpType = 'app';
- function isPromise(obj) {
- return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
- }
- uni.addInterceptor({
- returnValue(res) {
- if (!isPromise(res)) {
- return res;
- }
- return new Promise((resolve, reject) => {
- res.then(res => {
- if (res[0]) {
- reject(res[0]);
- } else {
- resolve(res[1]);
- }
- });
- });
- },
- });
- const app = new Vue({
- store,
- ...App,
- });
- // #ifdef H5
- RouterMount(app, router, '#app');
- // #endif
- app.$mount();
|