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