mirror of
https://github.com/KevinMidboe/planetposen.git
synced 2025-12-08 20:38:56 +00:00
Created header and the start of a shopping cart.
This commit is contained in:
16
frontend/main.js
Normal file
16
frontend/main.js
Normal file
@@ -0,0 +1,16 @@
|
||||
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 },
|
||||
render: h => h(App)
|
||||
})
|
||||
Reference in New Issue
Block a user