getCategory(category) {
this.$store.commit('categories/SELECT_CATEGORY', category)
},
export const state = () => ({
categories: [],
category: [],
})
export const mutations = {
SELECT_CATEGORY(state, category) {
state.category = category
},
}
data(){
return{
category_id: 0
}
}