Livewire and AlpineJS

What seems to be the problem: When typing into a text input with a wire:model attached a menu is shown that uses alpine and @click.

Steps to Reproduce:

<div x-data="{ open: false }">
    <input type="text" wire:model="search">
    <button @click="open = !open">Options</button>
    <ul
        x-show="open"
        @click.away="open = false"
    >
        My menu here
    </ul>
</div>

Are you using the latest version of Livewire: Yes

Do you have any screenshots or code examples: See above

This seems to happen with every element that has a wire:model attached to it. Is there a way to prevent that from happening? If I remove the wire:model from the input, everything works as expected.