浏览代码

gitbooks not showing link for "Core concepts" (#482)

* gitbooks not showing link for "Core concepts"

While reading the online book there is no link for next chapter after the Getting started one because Core concepts has no file attached to it.

* Create core-concepts.md

* added link to core-concepts.md

* Update README.md

* Update core-concepts.md
Suraj Patil 8 年之前
父节点
当前提交
5257afeb24
共有 3 个文件被更改,包括 14 次插入2 次删除
  1. 1 1
      docs/en/README.md
  2. 1 1
      docs/en/SUMMARY.md
  3. 12 0
      docs/en/core-concepts.md

+ 1 - 1
docs/en/README.md

@@ -1 +1 @@
-{% include "./SUMMARY.md" %}
+{% include "./SUMMARY.md" %}

+ 1 - 1
docs/en/SUMMARY.md

@@ -9,7 +9,7 @@
 - [Installation](installation.md)
 - [What is Vuex?](intro.md)
 - [Getting Started](getting-started.md)
-- Core Concepts
+- [Core Concepts](core-concepts.md)
   - [State](state.md)
   - [Getters](getters.md)
   - [Mutations](mutations.md)

+ 12 - 0
docs/en/core-concepts.md

@@ -0,0 +1,12 @@
+# Core Concepts
+
+We will be learning the core concepts in Vuex in this chapters. They are
+  - [State](state.md)
+  - [Getters](getters.md)
+  - [Mutations](mutations.md)
+  - [Actions](actions.md)
+  - [Modules](modules.md)
+
+A deep understanding of all these concepts is essential for using vuex. 
+
+Let's get started.