web/src/main.js

12 lines
304 B
JavaScript
Raw Normal View History

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
// 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({
render: h => h(App),
}).$mount('#app');