mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
16 lines
323 B
TypeScript
16 lines
323 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,
|
|
PickerFieldNames,
|
|
PickerObjectColumn,
|
|
PickerObjectOption,
|
|
PickerToolbarPosition,
|
|
} from './Picker';
|