Skip to content

Commit 26cb713

Browse files
authored
fix case sensitive links (#2718)
The "Shared-Getters" and "Shared-Actions" links need to be capitalised to work - this is due to the markdown processor pinia uses giving them capitalised IDs.
1 parent b3fd503 commit 26cb713

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/docs/cookbook/composing-stores.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const useY = defineStore('y', () => {
4242

4343
## Nested Stores
4444

45-
Note that if one store uses another store, you can directly import and call the `useStore()` function within _actions_ and _getters_. Then you can interact with the store just like you would from within a Vue component. See [Shared Getters](#shared-getters) and [Shared Actions](#shared-actions).
45+
Note that if one store uses another store, you can directly import and call the `useStore()` function within _actions_ and _getters_. Then you can interact with the store just like you would from within a Vue component. See [Shared Getters](#Shared-Getters) and [Shared Actions](#Shared-Actions).
4646

4747
When it comes to _setup stores_, you can simply use one of the stores **at the top** of the store function:
4848

0 commit comments

Comments
 (0)