mirror of
https://github.com/youzan/vant.git
synced 2026-05-07 01:01:01 +08:00
15 lines
303 B
TypeScript
15 lines
303 B
TypeScript
import { withInstall } from '../utils';
|
|
import _Picker from './Picker';
|
|
|
|
const Picker = withInstall<typeof _Picker>(_Picker);
|
|
|
|
export default Picker;
|
|
export { Picker };
|
|
export type {
|
|
PickerColumn,
|
|
PickerOption,
|
|
PickerObjectColumn,
|
|
PickerObjectOption,
|
|
PickerToolbarPosition,
|
|
} from './Picker';
|