From d0fc948a09726cb9835fa07141e106c745cf2416 Mon Sep 17 00:00:00 2001 From: blAck PR Date: Tue, 24 Jan 2017 12:10:15 +0200 Subject: [PATCH] fix jsfiddle example The example on jsfiddle is broken. We need to update the external resources --- docs/en/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/getting-started.md b/docs/en/getting-started.md index d2c0fd2e9..5a74affe3 100644 --- a/docs/en/getting-started.md +++ b/docs/en/getting-started.md @@ -39,6 +39,6 @@ Again, the reason we are committing a mutation instead of changing `store.state. Using store state in a component simply involves returning the state within a computed property, because the store state is reactive. Triggering changes simply means committing mutations in component methods. -Here's an example of the [most basic Vuex counter app](https://jsfiddle.net/yyx990803/n9jmu5v7/). +Here's an example of the [most basic Vuex counter app](https://jsfiddle.net/n9jmu5v7/341/). Next, we will discuss each core concept in much finer details, starting with [State](state.md).