vuetning
Version:
<p align="center"> <img width="160"src="https://s3.amazonaws.com/arcthos.com/vuetning/logo.svg"> </p>
17 lines (16 loc) • 371 B
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;
}