tiptap-vuetify
tiptap-vuetify copied to clipboard
Documentation for displaying saved editor HTML
Hi,
I'm saving the editors content as HTML to my database. I want to then display (readonly, without the editor toolbar) that content in different pages.
Using:
<div v-html="editorContentFromDB" />
Obviously does not render as pretty as tiptap itself.
How can I display the saved HTML through tiptap's pretty display? I think adding short documentation about the read only mode will help
me too
I got rid of the toolbar by omitting the extensions
prop from the tiptap-vuetify
component, but the content is still editable so it's a start?