vue-storefront
Version:
A Vue.js, PWA eCommerce frontend
21 lines (19 loc) • 455 B
JavaScript
import actions from './actions'
import getters from './getters'
import mutations from './mutations'
export default {
namespaced: true,
state: {
breadcrumbs: {routes: []},
current: null, // shown product
current_options: {color: [], size: []},
current_configuration: {},
parent: null,
list: [],
original: null, // default, not configured product
related: {}
},
getters,
actions,
mutations
}