Kaynağa Gözat

add missing comma

Yao Ding 7 yıl önce
ebeveyn
işleme
99b46e8004
1 değiştirilmiş dosya ile 5 ekleme ve 5 silme
  1. 5 5
      docs/art/5vue-merge.md

+ 5 - 5
docs/art/5vue-merge.md

@@ -35,7 +35,7 @@ for (key in parent) {
 ```js
 Vue.options = {
   components: {
-      KeepAlive
+      KeepAlive,
       Transition,
       TransitionGroup
   },
@@ -1056,9 +1056,9 @@ components: {
 ```js
 Vue.options = {
 	components: {
-	  KeepAlive
+	  KeepAlive,
 	  Transition,
-    	  TransitionGroup
+	  TransitionGroup
 	},
 	directives: Object.create(null),
 	directives:{
@@ -1074,7 +1074,7 @@ Vue.options = {
 
 ```js
 {
-  KeepAlive
+  KeepAlive,
   Transition,
   TransitionGroup
 }
@@ -1095,7 +1095,7 @@ res = {
   ChildComponent
   // 原型
   __proto__: {
-    KeepAlive
+    KeepAlive,
     Transition,
     TransitionGroup
   }