mirror of
https://github.com/cuiocean/ZY-Player.git
synced 2026-02-09 21:47:34 +08:00
14 lines
314 B
JavaScript
14 lines
314 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import store from './store'
|
|
import 'modern-normalize'
|
|
import Register from './components/register'
|
|
import './lib/element/index'
|
|
|
|
Register.registerComponents()
|
|
Vue.config.productionTip = false
|
|
new Vue({
|
|
store,
|
|
render: h => h(App)
|
|
}).$mount('#app')
|