From: Tony OHagan Date: Fri, 29 Oct 2021 08:32:32 +0000 (+1000) Subject: docs: fix import `useUserStore` (#754) X-Git-Tag: pinia@2.0.1~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=92678da6be92ac8f782d4d61e1c10fd9ed07929f;p=thirdparty%2Fvuejs%2Fpinia.git docs: fix import `useUserStore` (#754) --- diff --git a/packages/docs/cookbook/composing-stores.md b/packages/docs/cookbook/composing-stores.md index 0cab0277..34cdbcf9 100644 --- a/packages/docs/cookbook/composing-stores.md +++ b/packages/docs/cookbook/composing-stores.md @@ -94,7 +94,7 @@ The same applies to _actions_: ```js import { defineStore } from 'pinia' -import { useCartStore } from './cart' +import { useUserStore } from './user' export const useCartStore = defineStore('cart', { actions: {