This Error is occurred because in your normal page livewire slot variable is not found so here is the solution you may try with your code.
@if (!empty($slot))
{{ $slot }}
@else
@yield('content')
@endif
In my case i wanted to load content if slot is not found.