@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
23 lines (22 loc) • 466 B
TypeScript
import type { FC } from 'react';
import './index.less';
export interface TabStyleSelectProps {
label?: string;
name?: string;
/**
* 默认值
*/
defaultValue: string;
/**
* 选中的值
*/
value: string;
/**
* 监听下拉改变事件
*/
onChange?: (data: string) => void;
DSLCore?: any;
selectedComp?: any;
}
declare const TabStyleSelect: FC<TabStyleSelectProps>;
export default TabStyleSelect;