UNPKG

@gizwits/vantui

Version:

机智云组件库

19 lines (15 loc) 461 B
import { FunctionComponent } from 'react' import { ViewProps } from '@tarojs/components' export interface PickerColumnProps extends ViewProps { valueKey?: string className?: string itemHeight?: number | string visibleItemCount?: number initialOptions?: Array<any> defaultIndex?: number onChange?: (a: any) => void activeClass?: string refBase?: any } declare const PickerColumn: FunctionComponent<PickerColumnProps> export { PickerColumn }