How to hide output values while there is no focus on input?

English is not my native language. Sorry for the mistakes.

Creating a user search.
Search in input

<input type="text" wire:model="query">
<ul>
    @foreach($users as $user)
        <li>
            <p>
                {{ $user->name }}
            </p>
        </li>
    @endforeach
</ul>

How to hide output values while there is no focus on input