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'
- import TuniaoUI from 'tuniao-ui'
- Vue.use(TuniaoUI)
- let vuexStore = require('@/store/$t.mixin.js')
- Vue.mixin(vuexStore)
-
- let mpShare = require('tuniao-ui/libs/mixin/mpShare.js')
- Vue.mixin(mpShare)
- const app = new Vue({
- store,
- ...App
- })
- app.$mount()
|