25 lines
498 B
JavaScript
25 lines
498 B
JavaScript
|
import App from './App'
|
||
|
import store from './store'
|
||
|
|
||
|
import Vue from 'vue'
|
||
|
Vue.config.productionTip = false
|
||
|
App.mpType = 'app'
|
||
|
|
||
|
// 引入全局TuniaoUI
|
||
|
import TuniaoUI from 'tuniao-ui'
|
||
|
Vue.use(TuniaoUI)
|
||
|
|
||
|
// 引入TuniaoUI提供的vuex简写方法
|
||
|
let vuexStore = require('@/store/$tn.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()
|