From cb0a50dcbc15af89111ce554d04ffef404a02132 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Ku=CC=88hn?= Date: Tue, 23 Feb 2021 16:29:38 +0100 Subject: [PATCH] disable spellcheck for book example --- docs/src/demos/Examples/Book/index.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/src/demos/Examples/Book/index.vue b/docs/src/demos/Examples/Book/index.vue index 1e3a53b5..5374f91a 100644 --- a/docs/src/demos/Examples/Book/index.vue +++ b/docs/src/demos/Examples/Book/index.vue @@ -88,6 +88,11 @@ export default { this.editor = new Editor({ extensions: defaultExtensions(), content, + editorProps: { + attributes: { + spellcheck: 'false', + }, + }, }) },