vuetning
Version:
<p align="center"> <img width="160"src="https://s3.amazonaws.com/arcthos.com/vuetning/logo.svg"> </p>
23 lines (19 loc) • 461 B
text/typescript
export interface PageHeaderDropdownOption {
/**
* Indicates whether this page header dropdown options should be used as heading.
*/
isHeading: boolean
/**
* Page header dropdown option label.
*/
label: string
/**
* Page header dropdown option value.
* This property is used as the v-for key.
*/
value: string
/**
* Indicates whether this option is disabled.
*/
disabled: boolean
}