From: Eduardo San Martin Morote Date: Fri, 9 Apr 2021 10:41:09 +0000 (+0200) Subject: docs: fix broken link X-Git-Tag: v2.0.0-alpha.11~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc46baac9adcf017603efc636a13d2015838a8c5;p=thirdparty%2Fvuejs%2Fpinia.git docs: fix broken link --- diff --git a/docs/core-concepts/state.md b/docs/core-concepts/state.md index 3b457ca5..4dbb5590 100644 --- a/docs/core-concepts/state.md +++ b/docs/core-concepts/state.md @@ -114,7 +114,7 @@ You can replace the whole state of a store by setting its `$state` property to a store.$state = { counter: 666, name: 'Paimon' } ``` -You can also replace the whole state of your application by changing the `state` of the `pinia` instance. This is used during [SSR for hydration](http://localhost:3000/ssr/#state-hydration). +You can also replace the whole state of your application by changing the `state` of the `pinia` instance. This is used during [SSR for hydration](../ssr/#state-hydration). ```js pinia.state.value = {}