Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c3427be

Browse files
Mizumakikazupon
authored andcommittedJan 11, 2019
fix computed key from 'items' to 'item' (#221)
1 parent aead8ce commit c3427be

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎docs-gitbook/ja/data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export default {
8787
},
8888
computed: {
8989
// ストアの状態から item を表示します
90-
items () {
90+
item () {
9191
return this.$store.state.items[this.$route.params.id]
9292
}
9393
}

‎docs/ja/guide/data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export default {
9696
9797
computed: {
9898
// ストアの状態から item を表示します
99-
items () {
99+
item () {
100100
return this.$store.state.items[this.$route.params.id]
101101
}
102102
}

0 commit comments

Comments
 (0)
Please sign in to comment.