The authorization are independant from Livewire.
Are you using a specific package to manage the permissions ?
$this->authorize() let me think about the standard usage of the policies.
$this->authorize('viewAny', User::class);
or
Gate::authorize('viewAny', User::class);