mirror of
https://gitee.com/vant-contrib/vant.git
synced 2026-06-04 17:38:12 +08:00
14 lines
289 B
TypeScript
14 lines
289 B
TypeScript
import { withInstall } from '../utils';
|
|
import _Calendar from './Calendar';
|
|
|
|
const Calendar = withInstall<typeof _Calendar>(_Calendar);
|
|
|
|
export default Calendar;
|
|
export { Calendar };
|
|
export type {
|
|
CalendarType,
|
|
CalendarDayItem,
|
|
CalendarDayType,
|
|
CalendarInstance,
|
|
} from './types';
|