1234567891011121314151617181920 |
- const state = {
- selectedCategory: ''
- }
- const getters = {}
- const actions = {}
- const mutations = {
- setSelectedCategory (state, val) {
- state.selectedCategory = val
- }
- }
- export default {
- state,
- getters,
- actions,
- mutations
- }
|