mirror of
https://github.com/cuiocean/ZY-Player.git
synced 2026-05-05 14:43:48 +08:00
14 lines
237 B
JavaScript
14 lines
237 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import store from './store'
|
|
import '@/plugin/iview/'
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
render: h => h(App)
|
|
}).$mount('#app')
|