Skip to content

Instantly share code, notes, and snippets.

@tetsuo
Created July 14, 2017 16:13
Show Gist options
  • Save tetsuo/efd219e4c06f951c8281ad9b53f776a0 to your computer and use it in GitHub Desktop.
Save tetsuo/efd219e4c06f951c8281ad9b53f776a0 to your computer and use it in GitHub Desktop.
xus-example-index-2
const State = types.model("State", {
todos: types.array(Todo),
get completedCount() {
return this.todos.reduce(function(count, todo) {
return todo.done ? count + 1 : count
}, 0)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment