소스 검색

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 7 년 전
부모
커밋
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)
 - [Installation](installation.md)
 - [What is Vuex?](intro.md)
 - [What is Vuex?](intro.md)
 - [Getting Started](getting-started.md)
 - [Getting Started](getting-started.md)
-- Core Concepts
+- [Core Concepts](core-concepts.md)
   - [State](state.md)
   - [State](state.md)
   - [Getters](getters.md)
   - [Getters](getters.md)
   - [Mutations](mutations.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.