mirror of
https://github.com/cuiocean/ZY-Player.git
synced 2026-02-10 05:55:04 +08:00
13 lines
312 B
JavaScript
13 lines
312 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')
|