| 12345678910111213141516171819202122 |
- import Vue from 'vue'
- import App from './App'
- import store from './store'
- Vue.config.productionTip = false
- Vue.prototype.$store = store
- Vue.prototype.$backgroundAudioData = {
- playing: false,
- playTime: 0,
- formatedPlayTime: '00:00:00'
- }
- Vue.prototype.$adpid = "1111111111"
- App.mpType = 'app'
- const app = new Vue({
- store,
- ...App
- })
- app.$mount()
|