/
githubmirror
/
element
Обзор
Документация
Войти
/
githubmirror
/
element
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
types/descriptions-item.d.ts
37 строк
698 B
好多大米
Descriptions: add description component (#21129)
08 июл 2021, 10:26
Не верифицирован
08 июл 2021, 10:26
034da49
Код
Авторство
О чём код?
import { ElementUIComponent } from './component' import { VNode } from 'vue' interface ElDescriptionsItemSlots { /* label slot: custom label */ label: VNode[] /* default slot: custom content */ default: VNode[] [key: string]: VNode[] } /** description item. **/ export declare class ElDescriptionsItem extends ElementUIComponent { /* label text */ label: string /* the number of columns included */ span: number /* custom label class name */ labelClassName: string /* custom content class name */ contentClassName: string /* custom label style */ labelStyle: object /* custom content style */ contentStyle: object $slots: ElDescriptionsItemSlots }