UNPKG

@skillbill/vuelace-3

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/@skillbill%2Fvuelace-3.svg)](https://badge.fury.io/js/@skillbill%2Fvuelace-3)

17 lines (15 loc) 406 B
import { VLSelectOptionType } from '../VLSelect'; import { VLInputRuleType } from '../utils/types'; export interface VLDropdownProps { name: string; label: string; placeholder?: string; options?: VLSelectOptionType[]; disabled?: boolean; required?: boolean; multiple?: boolean; manual?: boolean; dropdown?: boolean; error?: string; rules?: VLInputRuleType[]; }