| 1234567891011121314 | export default {  namespaced: true,  state: {    shown: false  },  getters: {},  mutations: {    shownChange: (state, shownState) => { state.shown = shownState }  },  actions: {    open({ commit }) { commit('shownChange', true) },    close({ commit }) { commit('shownChange', false) }  }}
 |