web/src/main.js

12 lines
304 B
JavaScript
Raw Normal View History

2019-07-03 16:50:04 +02:00
import Vue from 'vue'
import App from './App.vue'
import './registerServiceWorker'
2019-07-03 16:54:29 +02:00
import './plugins/element.js'
2019-07-03 16:50:04 +02: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 16:50:04 +02:00
new Vue({
render: h => h(App),
}).$mount('#app');