Cart store module.

This commit is contained in:
2020-07-19 16:08:11 +02:00
parent 4a8a950efa
commit e0482e85f3
4 changed files with 51 additions and 125 deletions

View File

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