From: Niceplugin Date: Mon, 1 Aug 2022 13:53:15 +0000 (+0900) Subject: docs: Fix incorrect hash anchor (#1507) X-Git-Tag: @pinia/nuxt@0.4.0~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ccfd3d1b2741d393c38a4d01a8dc4ebc916ecc18;p=thirdparty%2Fvuejs%2Fpinia.git docs: Fix incorrect hash anchor (#1507) --- 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