vuetning
Version:
<p align="center"> <img width="160"src="https://s3.amazonaws.com/arcthos.com/vuetning/logo.svg"> </p>
20 lines (16 loc) • 370 B
text/typescript
import type { Option } from "../commons/option"
export interface CheckboxGroupOption extends Option {
/**
* Checkbox option label.
*/
label: string
/**
* Checkbox option value.
* This property is used as the v-for key.
*/
value: string
/**
* Indicates whether this option is disabled.
*/
disabled: boolean
}