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:
Tim Weber 2019-04-03 17:58:44 +02:00
parent 8799cc86e9
commit cdde4db66c
2 changed files with 15 additions and 0 deletions

5
vue/babel.config.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/app'
]
};

10
vue/src/main.js Normal file
View 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');