Closed nuernbergerA closed 3 years ago
Currently assertPropertyWired('foo') only checks for wire:model="foo"
assertPropertyWired('foo')
wire:model="foo"
This PR adds the ability to match also wire:model.defer="foo" or wire:model.lazy="foo"
wire:model.defer="foo"
wire:model.lazy="foo"
@nuernbergerA There are also options like this: wire:model.debounce.500ms.
wire:model.debounce.500ms
This can also apply for lazy like so: wire:model.lazy.500ms
wire:model.lazy.500ms
See: https://laravel-livewire.com/docs/2.x/properties#debouncing-input
Currently
assertPropertyWired('foo')
only checks forwire:model="foo"
This PR adds the ability to match also
wire:model.defer="foo"
orwire:model.lazy="foo"