mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
561 B
JavaScript
26 lines
561 B
JavaScript
import Vuex from 'vuex';
|
|
|
|
|
|
export default new Vuex.Store({
|
|
state: {
|
|
category: '',
|
|
quantities: [],
|
|
},
|
|
mutations: {
|
|
UPDATE_CATEGORY(state, payload) {
|
|
state.category = payload;
|
|
},
|
|
UPDATE_QUANTITIES(state, payload) {
|
|
state.quantities = payload;
|
|
},
|
|
},
|
|
actions:{
|
|
updateCategory(context,cat){
|
|
context.commit('UPDATE_CATEGORY',cat);
|
|
},
|
|
updateQuantities(context,idz){
|
|
context.commit('UPDATE_QUANTITIES',idz);
|
|
},
|
|
}
|
|
});
|