字段
在内容中显示的字段、属性或参数。
用法
使用 name
、type
、required
和 default
属性在内容中显示字段组件。
name必需
字符串
可以使用属性或在默认插槽中设置 description
,并支持完整的 Markdown 语法。
::field{name="name" type="string" required}
The `description` can be set as prop or in the default slot with full **markdown** support.
::
属性
name必需
字符串
默认
字符串
未定义
类型
字符串
未定义
ui
Partial<{ wrapper: string; container: string; name: string; required: string; type: string; label: string; description: string; }>
{}
描述
字符串
未定义
必需
布尔值
false
配置
{
wrapper: 'mt-5',
container: 'flex items-start gap-x-2.5 font-mono text-sm',
name: 'rounded-md font-semibold text-primary',
required: 'text-gray-500 dark:text-gray-400',
type: 'text-right',
label: 'flex flex-1 gap-x-2.5',
description: 'mt-3 mb-0 text-gray-600 dark:text-gray-300 text-sm space-y-3'
}