2019-07-03 14:50:04 +00:00
|
|
|
import Vue from 'vue'
|
|
|
|
import App from './App.vue'
|
|
|
|
import './registerServiceWorker'
|
2019-07-03 14:54:29 +00:00
|
|
|
import './plugins/element.js'
|
2019-07-03 14:50:04 +00:00
|
|
|
|
2019-07-05 07:05:11 +00:00
|
|
|
// only if your build system can import css, otherwise import it wherever you would import your css.
|
|
|
|
Vue.config.productionTip = false;
|
2019-07-03 14:50:04 +00:00
|
|
|
|
|
|
|
new Vue({
|
2019-07-05 07:05:11 +00:00
|
|
|
render: h => h(App),
|
|
|
|
}).$mount('#app');
|