ux-cascader-linkaitong
v1.0.0
Published
``` interface IOptions{ label: string,// 文本 children?: IOptions[] // 下一级联内容 } interface ICascaderProps { defaultValue?: string[], // 默认值 placeholder: string, // options: {// 级联内容 label: string, children?: IOptions[] }, onChange: ()
Downloads
2
Readme
interface IOptions{
label: string,// 文本
children?: IOptions[] // 下一级联内容
}
interface ICascaderProps {
defaultValue?: string[], // 默认值
placeholder: string, //
options: {// 级联内容
label: string,
children?: IOptions[]
},
onChange: () => void // 回调
}