From a74d8ac1d5666b9f7bc28edb8e3571a932f85872 Mon Sep 17 00:00:00 2001 From: Bruno Lesieur Date: Sat, 27 May 2017 09:59:18 +0200 Subject: [PATCH] Typo fix Signed-off-by: Bruno Lesieur --- en/data.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/data.md b/en/data.md index 0bee1de1..f5b1b004 100644 --- a/en/data.md +++ b/en/data.md @@ -138,7 +138,7 @@ export default context => { // filled with the state needed to render the app. // When we attach the state to the context, and the `template` option // is used for the renderer, the state will automatically be - // serialized and injected into the HTML as window.__INITIAL_STATE__. + // serialized and injected into the HTML as `window.__INITIAL_STATE__`. context.state = store.state resolve(app) @@ -256,7 +256,7 @@ Vue.mixin({ ## Store Code Splitting -In a large application, our vuex store will likely be split into multiple modules. Of course, it is also possible to code-split these modules into corresponding route component chunks. Suppose we have the following store module: +In a large application, our Vuex store will likely be split into multiple modules. Of course, it is also possible to code-split these modules into corresponding route component chunks. Suppose we have the following store module: ``` js // store/modules/foo.js