UNPKG

@kokoro/antmjs-vantui

Version:

一套适用于Taro3及React的vantui组件库

20 lines (16 loc) 478 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 idKey?: string } declare const PickerColumn: FunctionComponent<PickerColumnProps> export { PickerColumn }