index.js
345 Bytes
import actions from './actions';
import mutations from './mutations';
export default function() {
return {
namespaced: true,
state: {
fetchingPro: false,
fetchingNoSale: false,
fetchingChangePrice: false,
fetchingCalcPrice: false,
productInfo: {},
skcs: []
},
actions,
mutations
};
}