From 643969a22777e50b65bb8ecf7aa2a01ce4dc5833 Mon Sep 17 00:00:00 2001 From: Abbas Siddiqi Date: Sat, 2 Dec 2023 13:26:48 +0500 Subject: [PATCH] docs: fix property name in the example (#2511) --- packages/docs/core-concepts/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/core-concepts/index.md b/packages/docs/core-concepts/index.md index b74d93e5..c8cc37c8 100644 --- a/packages/docs/core-concepts/index.md +++ b/packages/docs/core-concepts/index.md @@ -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? -- 2.47.3