12345678910111213141516171819202122232425262728 |
- import App from './App'
- import store from './store'
- import storage from './utils/storage.js'
- import Vue from 'vue'
- Vue.config.productionTip = false
- Vue.prototype.$storage = storage;
- App.mpType = 'app'
- // 引入全局TuniaoUI
- import TuniaoUI from 'tuniao-ui'
- Vue.use(TuniaoUI)
- // 引入TuniaoUI提供的vuex简写方法
- let vuexStore = require('@/store/$t.mixin.js')
- Vue.mixin(vuexStore)
-
- // 引入TuniaoUI对小程序分享的mixin封装
- let mpShare = require('tuniao-ui/libs/mixin/mpShare.js')
- Vue.mixin(mpShare)
- const app = new Vue({
- store,
- ...App
- })
- app.$mount()
|