dasundev / livewire-quill-editor-tutorial

https://www.dasun.dev/blog/how-to-use-quill-rich-text-editor-with-livewire
5 stars 0 forks source link

wire:Ignore should be on parent div #2

Open scotchdesign opened 1 month ago

scotchdesign commented 1 month ago

Great article!

I believe the wire:ignore needs to go on the parent (container) div, not on the Quill div itself. I found the Quill component was refreshing with every character typed until I moved wire:ignore to the container. Reference: https://livewire.laravel.com/docs/wire-ignore

I think they've also recently dropped 'Http' out of the namespace. use App\Http\Livewire\Quill; becomes use App\Livewire\Quill;

dasundev commented 1 month ago

Can you send a PR?