gg-y-ui
Version:
An enterprise-class UI design language and Vue-based implementation for web
36 lines (29 loc) • 586 B
TypeScript
import { YUIComponent } from './component';
interface SOURCE_TYPE {
name: string;
value: string | number;
children?: SOURCE_TYPE;
}
/** Select Component */
export declare class YSelect extends YUIComponent {
/**
* The select source
*/
source: SOURCE_TYPE[];
/**
* Initial value, default selected value
*/
initVal: object | any[];
/**
* Whether multiple-select is activated
*/
isMulti: boolean;
/**
* The label of select, on left
*/
title: string;
/**
* Placeholder
*/
noValTips: string;
}