浏览代码

Fix missing comma in vuejs editorConfig documentation

There is a missing comma after the separator
Jeff Beagley 6 年之前
父节点
当前提交
6b82224b4d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/builds/guides/frameworks/vuejs.md

+ 1 - 1
docs/builds/guides/frameworks/vuejs.md

@@ -516,7 +516,7 @@ Specifies the {@link module:core/editor/editorconfig~EditorConfig configuration}
 			return {
 			return {
 				editor: ClassicEditor,
 				editor: ClassicEditor,
 				editorConfig: {
 				editorConfig: {
-					toolbar: [ 'bold', 'italic', '|' 'link' ]
+					toolbar: [ 'bold', 'italic', '|', 'link' ]
 				}
 				}
 			};
 			};
 		}
 		}