mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
18 lines
259 B
JavaScript
18 lines
259 B
JavaScript
export const state = () => {
|
|
return {
|
|
searchValue: '',
|
|
}
|
|
}
|
|
|
|
export const mutations = {
|
|
SET_VALUE(state, ctx) {
|
|
state.searchValue = ctx.searchValue || ''
|
|
},
|
|
}
|
|
|
|
export const getters = {
|
|
searchValue(state) {
|
|
return state.searchValue
|
|
},
|
|
}
|