I spent at least 2 days being blocked on my project, using Tiptap to send form data to my DB. And your video was exactly what I needed. Thank you so much 🙏
@SAIEN3339 ай бұрын
yes Sir, this is how a tutorial should be, not in any rush, very detailed . thankyou
@picozzimichele11 ай бұрын
Thanks! That prose + tailwind was exactly what I was looking for!
@bobdpa Жыл бұрын
Andre is back and with perfect timing. Thank you! 💯
@nemercevroman21 күн бұрын
amaaazing! actually on last part of 2024
@dclindner Жыл бұрын
Fantastic! I've needed this kind of solution for a long time. Thank you.
@GondarMD2 ай бұрын
Great tutorial. Thank you for the detail.
@marcorosenbaum990010 ай бұрын
Great video mate. Thank you!
@mah-amiri1336 ай бұрын
thank you! great video
@nobodywithme8 ай бұрын
Thanks sir...! You save my time ❣️
@Aaron-xc5qm2 ай бұрын
tqvm!!!
@biLLie_wiLLie8 ай бұрын
I would like to see how to work with images in tiptap
@GondarMD2 ай бұрын
Especially where images are not stored on a backend, but locally on the front-end device.
@riza432910 ай бұрын
thanks very much, it's usefull
@OualidOUKASSOU9 ай бұрын
Thanks for this amazing tutorial, can you explain how to implement image copy and past or drag & drop
@datalabwork Жыл бұрын
Nice video....Can you demonstrate creating Admin Dashboard without using any other premade stuff please.
@millennia Жыл бұрын
Andre, thank you for your amazing videos ❤ can you make a video for next and laravel
@iliantachev48738 ай бұрын
Guys, am I the only one who has issues with the rendering? When I type long text, for example, in the editor it comes as normal, it goes on new line, but upon rendering, it is scrolling on y-axis.
@longminhnguyenvu500411 ай бұрын
Hi sir, How can i customize vscode theme and font like you, please send me a tutorial video. Thank you so much.
@Jesus-mu4ix Жыл бұрын
❤
@kristiyan.zhelyazkov Жыл бұрын
what extension do you use for selecting the entire tag?
@drehimself Жыл бұрын
It's built into Emmet (which is in VSCode by default). The command is Emmet: Balance (outward). I bind that command to Command + Shift + a.
@LMayor Жыл бұрын
Hey Andre , What an awesome tutorial ! , truly love your simple and precise way , i wonder how can i get starter laravel-vue boilerplate kit project like yours if it's possible
@drehimself Жыл бұрын
In this video, I just used Laravel Breeze with the Inertia/Vue starter kit: laravel.com/docs/10.x/starter-kits#breeze-and-inertia
@LMayor Жыл бұрын
so cool@@drehimself
@CoreCave Жыл бұрын
Can you tell me about the tool you used to search through tailwind docs
@drehimself Жыл бұрын
It's a Raycast extension: www.raycast.com/vimtor/tailwindcss/commands. Maybe I'll do a video of all my Raycast extensions.
@CoreCave Жыл бұрын
By the way I love your content very a lot
@oketafred Жыл бұрын
@@drehimself how to install Raycast and set up the extensions. Thanks
@xxc-j1l4 ай бұрын
good
@mingxindong31502 ай бұрын
I encountered an issue where the Tiptap editor content didn't update when the inital modelValue changed. I solved it by watch the inital value: watch( () => props.modelValue, (newValue) => { if (editor && editor.value?.isEditable && newValue !== editor.value?.getHTML()) { editor.value?.commands.setContent(newValue); } } )
@Raihan004 Жыл бұрын
does it support math equitation?
@drehimself Жыл бұрын
There's a plugin for mathematics: tiptap.dev/api/extensions/mathematics