NOT COMPILING. Init vue setup.

This commit is contained in:
2019-11-16 17:20:13 +01:00
parent b32710b4d3
commit 1e8770a226
11 changed files with 235 additions and 0 deletions

17
frontend/main.js Normal file
View File

@@ -0,0 +1,17 @@
import Vue from 'vue'
import VueRouter from 'vue-router'
// import router from './routes'
// import store from './store'
import App from './App.vue'
Vue.use(VueRouter)
new Vue({
el: '#app',
router,
// store,
components: { App },
// template: '<App />',
render: h => h(App)
})