action
export const getPosts = async ({ state, actions, effects }) => {
state.isLoadingPosts = true
state.posts = await effects.api.getPosts()
state.isLoadingPosts = false
}Payload
export const setTitle = ({ state }, title) => {
state.title = title
}Last updated