Skip to content

Commit 97f0aa8

Browse files
authored
Fixed method name in code example
Changed `findInStore` to `getFromStore` in code sample
1 parent a4debb5 commit 97f0aa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/model-classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Model classes have a `getFromStore` method, which is a proxy to the [`get` gette
5858
// In your Vue component
5959
created () {
6060
const { Todo } = this.$FeathersVuex
61-
const todo = Todo.findInStore(this.id)
61+
const todo = Todo.getFromStore(this.id)
6262
}
6363
```
6464

0 commit comments

Comments
 (0)