Hi @mathewp
If I understand correctly, you should have a public property at your component class set as an empty array:
public $multi = [];
Then at your blade you will have:
<select wire:model="multi" multiple>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
In order to test it, you can add in the same blade, a span / div / p tag...whatever with the following inside:
<div>
{{ implode(' - ', $multi) }}
</div>
Hopefully this is what you wanted!

