I would like to execute multiple statements within a single Alpine.js event handler (however, I believe it could be generalized to any attribute).
An example of what I would like to achieve:
<button x-data
@click="alert('first')"
@click="alert('second')">
Click me
</button>