ant-design-vue/components/vc-picker/index.tsx
2022-04-14 16:17:59 +08:00

13 lines
404 B
Vue

// 2.6.7
import type { PickerProps } from './Picker';
import Picker from './Picker';
import PickerPanel from './PickerPanel';
import RangePicker from './RangePicker';
import type { PickerPanelProps } from './PickerPanel';
import type { RangePickerProps } from './RangePicker';
export { PickerPanel, RangePicker };
export type { PickerProps, PickerPanelProps, RangePickerProps };
export default Picker;