1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import Vue from 'vue';
- import App from './App';
- Vue.config.productionTip = false;
- App.mpType = 'app';
- // 引入全局uView
- import uView from 'uview-ui';
- Vue.use(uView);
- // 此处为演示vuex使用,非uView的功能部分
- import store from '@/store';
- // 引入uView提供的对vuex的简写法文件
- let vuexStore = require('@/store/$u.mixin.js');
- Vue.mixin(vuexStore);
- // 引入uView对小程序分享的mixin封装
- let mpShare = require('uview-ui/libs/mixin/mpShare.js');
- Vue.mixin(mpShare);
- import * as util from './core/util.js';
- import moment from './core/unpkg/moment.js';
- import site from './core/site.js';
- import $const from './core/constant.js';
- import jump from './core/jump.js';
- Vue.use({
- install(Vue, options) {
- // 配置
- Vue.prototype.$site = site;
- Vue.prototype.$moment = moment;
- //
- Vue.prototype.$util = util;
- // 常量
- Vue.prototype.$const = $const;
- // 路由
- Vue.prototype.$jump = jump;
- // 平台
- Vue.prototype.$platform = uni.getSystemInfoSync().platform
- }
- });
- const app = new Vue({
- store,
- ...App
- });
- // http拦截器,将此部分放在new Vue()和app.$mount()之间,才能App.vue中正常使用
- import httpInterceptor from '@/core/http.interceptor.js';
- Vue.use(httpInterceptor, app);
- // http接口API抽离,免于写url或者一些固定的参数
- import httpApi from '@/core/http.api.js';
- Vue.use(httpApi, app);
- app.$mount();
|