From 6610cde6a080f6929f274bfd3e8f6ff2f7082f7a Mon Sep 17 00:00:00 2001 From: VadymGulka <72401561+VadymGulka@users.noreply.github.com> Date: Tue, 25 May 2021 11:35:51 +0200 Subject: [PATCH] Fix: broken gif url Change time-travel demo gif url from master to legacy branch --- src/guide/state-management.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/state-management.md b/src/guide/state-management.md index 366df48ca2..a67491ec6a 100644 --- a/src/guide/state-management.md +++ b/src/guide/state-management.md @@ -2,7 +2,7 @@ ## Official Flux-Like Implementation -Large applications can often grow in complexity, due to multiple pieces of state scattered across many components and the interactions between them. To solve this problem, Vue offers [Vuex](https://next.vuex.vuejs.org/), our own Elm-inspired state management library. It even integrates into [vue-devtools](https://github.com/vuejs/vue-devtools), providing zero-setup access to [time travel debugging](https://raw.githubusercontent.com/vuejs/vue-devtools/master/media/demo.gif). +Large applications can often grow in complexity, due to multiple pieces of state scattered across many components and the interactions between them. To solve this problem, Vue offers [Vuex](https://next.vuex.vuejs.org/), our own Elm-inspired state management library. It even integrates into [vue-devtools](https://github.com/vuejs/vue-devtools), providing zero-setup access to [time travel debugging](https://raw.githubusercontent.com/vuejs/vue-devtools/legacy/media/demo.gif). ### Information for React Developers