From: Aleksander Rekść Date: Thu, 25 Mar 2021 13:46:38 +0000 (+0100) Subject: docs: fixed naming for reference to other store in action (#407) X-Git-Tag: v2.0.0-alpha.8~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eee4fa2d1ebd75705df289f404e56e9f4d0afa0e;p=thirdparty%2Fvuejs%2Fpinia.git docs: fixed naming for reference to other store in action (#407) --- diff --git a/docs/core-concepts/actions.md b/docs/core-concepts/actions.md index 319accc0..6da871aa 100644 --- a/docs/core-concepts/actions.md +++ b/docs/core-concepts/actions.md @@ -37,7 +37,7 @@ export default defineComponent({ To use another store, you can directly _use it_ inside of the _getter_: ```js -import { useOtherStore } from './other-store' +import { useAuthStore } from './auth-store' export const useSettingsStore = defineStore({ id: 'settings',