/
githubmirror
/
element
Обзор
Документация
Войти
/
githubmirror
/
element
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
types/collapse-item.d.ts
26 строк
552 B
hetech
Collapse: collapse item can be disabled (#15076)
19 апр 2019, 07:18
Не верифицирован
19 апр 2019, 07:18
3f0820d
Код
Авторство
О чём код?
import { VNode } from 'vue' import { ElementUIComponent } from './component' export interface CollapseItemSlots { /** Content of the collapse item */ default: VNode[], /** Title of the collapse item */ title: VNode[] [key: string]: VNode[] } /** Collapse Item Component */ export declare class ElCollapseItem extends ElementUIComponent { /** Unique identification of the panel */ name: string | number /** Title of the panel */ title: string $slots: CollapseItemSlots /** Disable the collapse item */ disabled: boolean }