tiptap-vuetify
tiptap-vuetify copied to clipboard
Embeds?
Hi,
Do you plan on adding the original tiptap's embed property to allow embedding youtube videos etc.?
I found some resource but I tried to add custom Node, I failed...
https://tiptap.dev/embeds
@kangchals I'm quite late on the party, but did you succeed later on? 😅
anyway... it's a little pity that this repo is dead, @iliyaZelenko you did amazing job, this is still the best solution for vuetify!
Temporary workaround (not convenient for some users):
- Create another input field for video embed and save embed code as different column
<v-textarea outlined class="my-2" v-model="video" label="Video Embed" rows="2"></v-textarea>
-
Instruct the user to place shortcode like [video] or [embed] wherever they want to embed video:
-
Replace tag with embedded code:
this.body = this.body.replace("[video]", this.video)