category.js 231 B

1234567891011121314151617181920
  1. const state = {
  2. selectedCategory: ''
  3. }
  4. const getters = {}
  5. const actions = {}
  6. const mutations = {
  7. setSelectedCategory (state, val) {
  8. state.selectedCategory = val
  9. }
  10. }
  11. export default {
  12. state,
  13. getters,
  14. actions,
  15. mutations
  16. }