Files
ZY-Player/src/main.js
Hunlongyu a29275ca73 20191206
2019-12-06 10:58:38 +08:00

15 lines
271 B
JavaScript

import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import '@/plugin/iview/'
// import '@/plugin/localforage/'
Vue.config.productionTip = false
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')