export const state = () => ({ showUserCollectionsModal: false }) export const getters = { } export const actions = { } export const mutations = { setShowUserCollectionsModal(state, val) { state.showUserCollectionsModal = val } }