From eee4fa2d1ebd75705df289f404e56e9f4d0afa0e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aleksander=20Rek=C5=9B=C4=87?= Date: Thu, 25 Mar 2021 14:46:38 +0100 Subject: [PATCH] docs: fixed naming for reference to other store in action (#407) --- docs/core-concepts/actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', -- 2.47.3