Files
webgems/store/Sidebar.js
T
2019-09-05 21:45:02 +02:00

15 lines
304 B
JavaScript

export const state = () => ({
cardsShown: true
})
export const getters = {
isCardsShown: state => state.cardsShown
}
export const mutations = {
toggleCardsShown(state) {
if (process.browser) localStorage.setItem('cardsShown', !state.cardsShown)
state.cardsShown = !state.cardsShown
}
}