Languages

Version

Theme

组件

Input Blade 组件

简介

此 Input 组件是对原生 <input> 元素的包装。它提供了一个简单的界面来输入单行文本。

<x-filament::input.wrapper>
    <x-filament::input
        type="text"
        wire:model="name"
    />
</x-filament::input.wrapper>

要使用输入组件,你必须将其包装在一个 “input wrapper” 组件中,该组件提供边框和其他元素,例如前缀或后缀。你可以在此处了解更多关于自定义输入包装器(input wrapper)组件的信息。

Edit on GitHub

Still need help? Join our Discord community or open a GitHub discussion

Previous
Input wrapper Blade 组件