Skip to content

Commit

Permalink
docs: fix property name in the example (#2511)
Browse files Browse the repository at this point in the history
  • Loading branch information
abbassiddiqi authored Dec 2, 2023
1 parent 4121e55 commit 643969a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docs/core-concepts/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const useSearchFilters = defineStore('search-filters', () => {
```

:::warning
Do not return properties like `useRoute()` or `appProvided` (from the example above) as they do not belong to the store itself and you can directly access them within components with `useRoute()` and `inject('appProvided')`.
Do not return properties like `route` or `appProvided` (from the example above) as they do not belong to the store itself and you can directly access them within components with `useRoute()` and `inject('appProvided')`.
:::

## What syntax should I pick?
Expand Down

0 comments on commit 643969a

Please sign in to comment.