fit-select
Version:
选择框
24 lines (23 loc) • 498 B
JSX
class Props {
constructor() {
this.onChange = () => {
};
this.search = false;
this.simple = false;
this.value = '';
this.defaultValue = '';
this.options = new Array();
this.cascaderFull = false;
}
}
exports.Props = Props;
class State {
constructor() {
this.open = false;
this.searchValue = '';
this.labelValue = '';
this.cascader = new Array();
}
}
exports.State = State;
;