You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Add a synchronous required validator to 'editorField'.
442
+
validate(p.editor, () => {
443
+
returnthis.quillfield()?.validate({
444
+
required: true,
445
+
minLength: 5
446
+
}) ||null
447
+
})
448
+
})
449
+
```
450
+
420
451
## QuillViewComponent, QuillViewHTMLComponent & How to present the editor content
421
452
422
453
In most cases a wysiwyg editor is used in backoffice to store the content to the database. On the other side this value should be used, to show the content to the enduser.
0 commit comments