mirror of https://github.com/ZainZhao/HIS.git
29 lines
564 B
JavaScript
29 lines
564 B
JavaScript
|
import Vue from 'vue'
|
||
|
import App from './App'
|
||
|
|
||
|
import pageHead from './components/page-head.vue'
|
||
|
import pageFoot from './components/page-foot.vue'
|
||
|
import uLink from '@/components/uLink.vue'
|
||
|
import store from './store'
|
||
|
|
||
|
Vue.config.productionTip = false
|
||
|
|
||
|
Vue.prototype.$store = store
|
||
|
Vue.prototype.$backgroundAudioData = {
|
||
|
playing: false,
|
||
|
playTime: 0,
|
||
|
formatedPlayTime: '00:00:00'
|
||
|
}
|
||
|
|
||
|
Vue.component('page-head', pageHead)
|
||
|
Vue.component('page-foot', pageFoot)
|
||
|
Vue.component('uLink', uLink)
|
||
|
|
||
|
App.mpType = 'app'
|
||
|
|
||
|
const app = new Vue({
|
||
|
store,
|
||
|
...App
|
||
|
})
|
||
|
app.$mount()
|