我有一个带有按钮的 Livewire 组件,我想通过单击该按钮来附加一个表单(即另一个 livewire 组件)。就像我们使用 ajax 一样,请求后端加载 HTML 并附加 jQuery。所以问题是,我们可以对 Livewire 做同样的事情吗?
<div>
<button wire:click="loadFormComponent">Add a Link</button>
<div>
here I want to append the result of `loadFormComponent`
</div>
</div>
下面是表单组件
<div>
<form wire:submit.prevent="addLink">
<div>
<input type="URL" wire:model="URL" placeholder="https://example.com">
<button type="submit">Save Link</button>
</div>
</form>
</div>