From: Julian Martin Date: Mon, 3 May 2021 12:37:15 +0000 (+0200) Subject: docs: action instead of getter (#467) X-Git-Tag: v2.0.0-alpha.16~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7fb43f395f0d0c89bfbd0647bda65908c0b4b0d5;p=thirdparty%2Fvuejs%2Fpinia.git docs: action instead of getter (#467) --- diff --git a/docs/core-concepts/actions.md b/docs/core-concepts/actions.md index 4805c74a..1628ed2d 100644 --- a/docs/core-concepts/actions.md +++ b/docs/core-concepts/actions.md @@ -37,7 +37,7 @@ export default defineComponent({ ## Accessing other stores actions -To use another store, you can directly _use it_ inside of the _getter_: +To use another store, you can directly _use it_ inside of the _action_: ```js import { useAuthStore } from './auth-store'