Skip to content

Instantly share code, notes, and snippets.

@dvallin
Created November 29, 2017 16:46
Show Gist options
  • Save dvallin/85da6d68f3aebcc58cbaf0cd22015838 to your computer and use it in GitHub Desktop.
Save dvallin/85da6d68f3aebcc58cbaf0cd22015838 to your computer and use it in GitHub Desktop.
tasksOrderedByTitle: (state, getters) => {
return _.orderBy(state.tasks, ['title'], ['asc']);
},
firstTitle: (state, getters) => {
return _.first(getters.tasksOrderedByTitle())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment