main.js 352 B

12345678910111213141516171819202122
  1. import Vue from 'vue'
  2. import App from './App'
  3. import store from './store'
  4. Vue.config.productionTip = false
  5. Vue.prototype.$store = store
  6. Vue.prototype.$backgroundAudioData = {
  7. playing: false,
  8. playTime: 0,
  9. formatedPlayTime: '00:00:00'
  10. }
  11. Vue.prototype.$adpid = "1111111111"
  12. App.mpType = 'app'
  13. const app = new Vue({
  14. store,
  15. ...App
  16. })
  17. app.$mount()