You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
738 B
36 lines
738 B
import Vue from 'vue';
|
|
import App from './App';
|
|
|
|
// vuex
|
|
import store from './store';
|
|
// 引入全局uView
|
|
import uView from '@/uni_modules/uview-ui';
|
|
import mixin from './common/mixin';
|
|
// 全局组件
|
|
import VueDraggable from '@/common/node_modules/vuedraggable/src/vuedraggable';
|
|
Vue.component('draggable', VueDraggable);
|
|
|
|
// vuex
|
|
Vue.prototype.$store = store;
|
|
Vue.config.productionTip = false;
|
|
|
|
App.mpType = 'app';
|
|
Vue.use(uView);
|
|
|
|
// #ifdef MP
|
|
// 引入uView对小程序分享的mixin封装
|
|
const mpShare = require('@/uni_modules/uview-ui/libs/mixin/mpShare.js');
|
|
Vue.mixin(mpShare);
|
|
// #endif
|
|
|
|
Vue.mixin(mixin);
|
|
|
|
const app = new Vue({
|
|
store,
|
|
...App,
|
|
});
|
|
|
|
// 引入请求封装
|
|
require('./util/request/index')(app);
|
|
|
|
app.$mount();
|
|
|