Skip to content

Instantly share code, notes, and snippets.

@dvallin
Created November 29, 2017 16:46
Show Gist options
  • Save dvallin/3577bcc7733cc86568a1df3c5389dc69 to your computer and use it in GitHub Desktop.
Save dvallin/3577bcc7733cc86568a1df3c5389dc69 to your computer and use it in GitHub Desktop.
export const getters = {
taskByTitle: (state, getters) => (title) => {
return state.tasks.find(task => task.title === title)
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment