1.0.0 • Published 6 years ago

ux-cascader-linkaitong v1.0.0

Weekly downloads
1
License
ISC
Repository
gitlab
Last release
6 years ago
interface IOptions{
  label: string,// 文本
  children?: IOptions[] // 下一级联内容
}
interface ICascaderProps {
  defaultValue?: string[], // 默认值
  placeholder: string, // 
  options: {// 级联内容
    label: string,
    children?: IOptions[]
  },
  onChange: () => void // 回调
}