disable spellcheck for book example

This commit is contained in:
Philipp Kühn
2021-02-23 16:29:38 +01:00
parent 9bb9c92523
commit cb0a50dcbc

View File

@@ -88,6 +88,11 @@ export default {
this.editor = new Editor({
extensions: defaultExtensions(),
content,
editorProps: {
attributes: {
spellcheck: 'false',
},
},
})
},