From: Ben Sheedy Date: Fri, 13 Aug 2021 21:32:03 +0000 (+0100) Subject: docs: typo (#613) X-Git-Tag: @pinia/nuxt@0.0.1~44 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=daccd632dfd426fc0bfb34ed68a61e9a854c1de2;p=thirdparty%2Fvuejs%2Fpinia.git docs: typo (#613) --- diff --git a/docs/core-concepts/index.md b/docs/core-concepts/index.md index 88d219f2..5df92276 100644 --- a/docs/core-concepts/index.md +++ b/docs/core-concepts/index.md @@ -39,7 +39,7 @@ If you are not using `setup` components yet, [you can still use Pinia with _map Once the store is instantiated, you can access any property defined in `state`, `getters`, and `actions` directly on the store. We will see these in detail in the next pages but autocompletion will help you. -Note that `store` in an object wrapped with `reactive`, meaning there is no need to write `.value` after getters but, like `props` in `setup`, **we cannot destructure it**: +Note that `store` is an object wrapped with `reactive`, meaning there is no need to write `.value` after getters but, like `props` in `setup`, **we cannot destructure it**: ```js export default defineComponent({