]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
docs: Invalid Docs Link (#1487)
authorNiceplugin <niceplugin@gmail.com>
Wed, 27 Jul 2022 13:27:50 +0000 (22:27 +0900)
committerGitHub <noreply@github.com>
Wed, 27 Jul 2022 13:27:50 +0000 (15:27 +0200)
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
packages/docs/core-concepts/index.md

index e18ab5a60a0600d38df518f76647d226f01385ff..f0032e3f081497b291a9fddf5b4fb8a63c18fa88 100644 (file)
@@ -64,7 +64,7 @@ In _Setup Stores_:
 - `computed()`s become `getters`
 - `function()`s become `actions`
 
-Setup stores bring a lot more flexibility than [Options Stores](#option-stores) as you can create watchers within a store and freely use any [composable](https://vuejs.org/guide/reusability/composables.html#composables). However, keep in mind that using composables will get more complex [SSR](../cookbook//composables.md).
+Setup stores bring a lot more flexibility than [Options Stores](#option-stores) as you can create watchers within a store and freely use any [composable](https://vuejs.org/guide/reusability/composables.html#composables). However, keep in mind that using composables will get more complex [SSR](../cookbook/composables.md).
 
 ## What syntax should I pick?