cdde4db66c
Don't add files to the staging area while IntelliJ is indexing, I guess.
11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
new Vue({
|
|
router,
|
|
render: h => h(App)
|
|
}).$mount('#app');
|