From ccfd3d1b2741d393c38a4d01a8dc4ebc916ecc18 Mon Sep 17 00:00:00 2001 From: Niceplugin Date: Mon, 1 Aug 2022 22:53:15 +0900 Subject: [PATCH] docs: Fix incorrect hash anchor (#1507) --- packages/docs/cookbook/options-api.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/docs/cookbook/options-api.md b/packages/docs/cookbook/options-api.md index b74972a4..bfe373ea 100644 --- a/packages/docs/cookbook/options-api.md +++ b/packages/docs/cookbook/options-api.md @@ -3,10 +3,10 @@ Pinia can be used even if you are not using the composition API (if you are using Vue 2, you still need to install the `@vue/composition-api` plugin though). While we recommend you to give the Composition API a try and learn it, it might not be the time for you and your team yet, you might be in the process of migrating an application, or any other reason. There are a few functions: - [mapStores](#giving-access-to-the-whole-store) -- [mapState](../core-concepts/state.md#options-api) +- [mapState](../core-concepts/state.md#usage-with-the-options-api) - [mapWritableState](../core-concepts/state.md#modifiable-state) -- ⚠️ [mapGetters](../core-concepts/getters.md#options-api) (just for migration convenience, use `mapState()` instead) -- [mapActions](../core-concepts/actions.md#options-api) +- ⚠️ [mapGetters](../core-concepts/getters.md#without-setup) (just for migration convenience, use `mapState()` instead) +- [mapActions](../core-concepts/actions.md#without-setup) ## Giving access to the whole store -- 2.47.2