核心概念 - Blade 组件
Select Blade 组件
概述
Select 组件是使用原生 <select>
元素包装的组件。它提供了从选项列表中选择一个值的简单接口:
<x-filament::input.wrapper> <x-filament::input.select wire:model="status"> <option value="draft">Draft</option> <option value="reviewing">Reviewing</option> <option value="published">Published</option> </x-filament::input.select></x-filament::input.wrapper>
要使用 Select 组件,你需要将其包裹在 "input wrapper" 中,"input wrapper" 提供了边框和其他诸如前后缀之类的元素。了解更多自定义 input wrapper 组件,请查阅此处
Edit on GitHubStill need help? Join our Discord community or open a GitHub discussion