vuetning
Version:
<p align="center"> <img width="160"src="https://s3.amazonaws.com/arcthos.com/vuetning/logo.svg"> </p>
20 lines (16 loc) • 427 B
text/typescript
import type { Option } from "../commons/option"
export interface WideRadioGroupOption extends Option {
/**
* Wide radio group option optional description to be displayed bellow the label.
*/
description?: string
/**
* Wide radio group option label.
*/
label: string
/**
* Wide radio group option value.
* This property is used as the v-for key.
*/
value: string
}