15 lines
397 B
PHP
15 lines
397 B
PHP
<div>
|
|
You id is {{ $id }}
|
|
<button wire:click ="doSome">Hit child</button>
|
|
</div>
|
|
|
|
@script
|
|
<script>
|
|
// After the first "Hit parent" this will gives youn the error of no component found
|
|
// due the lack of hability of livewire to track correctly the previous component events
|
|
@this.on('did', () => {
|
|
alert('did it')
|
|
})
|
|
</script>
|
|
@endscript
|