mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
18 lines
338 B
JavaScript
18 lines
338 B
JavaScript
export const state = () => {
|
|
return {
|
|
showFilterPostsDropdown: false,
|
|
}
|
|
}
|
|
|
|
export const getters = {
|
|
showFilterPostsDropdown(state) {
|
|
return state.showFilterPostsDropdown || false
|
|
},
|
|
}
|
|
|
|
export const mutations = {
|
|
SET_SHOW_FILTER_POSTS_DROPDOWN(state, boolean) {
|
|
state.showFilterPostsDropdown = boolean || null
|
|
},
|
|
}
|