forked from um/web
53d4b5efe5
Finish UI Add loading screen Change PWA Config Remove useless file Load Element-UI on Demand Fix deploy on sub-folder
12 lines
304 B
JavaScript
12 lines
304 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import './registerServiceWorker'
|
|
import './plugins/element.js'
|
|
|
|
// only if your build system can import css, otherwise import it wherever you would import your css.
|
|
Vue.config.productionTip = false;
|
|
|
|
new Vue({
|
|
render: h => h(App),
|
|
}).$mount('#app');
|