Add missing files for Vue frontend
Don't add files to the staging area while IntelliJ is indexing, I guess.
This commit is contained in:
parent
8799cc86e9
commit
cdde4db66c
5
vue/babel.config.js
Normal file
5
vue/babel.config.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
module.exports = {
|
||||||
|
presets: [
|
||||||
|
'@vue/app'
|
||||||
|
]
|
||||||
|
};
|
10
vue/src/main.js
Normal file
10
vue/src/main.js
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
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');
|
Loading…
Reference in New Issue
Block a user