vue-lib-components
Version:
Contains Vue 3 components that are used quite often. At the moment it is a test version (however, the current components can be used), but in the near future new features will be improved and new components will be added.
17 lines (16 loc) • 343 B
TypeScript
export interface TOption {
label: string;
value: string;
disabled?: boolean;
}
export interface TSelect {
model: string | null | TOption;
width?: string;
label?: string;
notSelected?: string;
hideNotSelect?: boolean;
options: Array<TOption>;
disabled?: boolean;
error?: string;
hint?: string;
}