UNPKG

vuetning

Version:

<p align="center"> <img width="160"src="https://s3.amazonaws.com/arcthos.com/vuetning/logo.svg"> </p>

16 lines (13 loc) 231 B
/** * A base option used by component that allow selection of values based on labels. */ export interface Option { /** * Option label. */ label: string /** * Option value. */ value: string }