A piece of code used in combination with livewire and alpinejs. input form not getting value
Component view code, a normal form, livewire and alpinejs combined.
<div x-data="{
tags: [1,2],
}">
<form wire:submit.prevent="save">
<input type="hidden" :value="tags" wire:model="tags">
<button class="button button-primary" type="submit">submit</button>
</form>
</div>
class PostModal extends Component
{
public $tagItems;
public function save()
{
dd($this->tags);
}
}
The code is wrong and I can't get the value of tags, but I don't know what to do. Can anyone help me?