Skip to content

Commit db7ec02

Browse files
authored
docs(zh): missing ':' on line 34 (#2041)
1 parent 9bd6491 commit db7ec02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/zh/guide/getters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const store = createStore({
3131
]
3232
},
3333
getters: {
34-
doneTodos (state) => {
34+
doneTodos: (state) => {
3535
return state.todos.filter(todo => todo.done)
3636
}
3737
}

0 commit comments

Comments
 (0)