mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-12-31 14:46:16 +00:00
NOT COMPILING. Init vue setup.
This commit is contained in:
17
frontend/main.js
Normal file
17
frontend/main.js
Normal 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)
|
||||
})
|
||||
Reference in New Issue
Block a user