mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-01 13:46:34 +08:00
14 lines
281 B
TypeScript
14 lines
281 B
TypeScript
import { withInstall } from '../utils';
|
|
import _Popover from './Popover';
|
|
|
|
const Popover = withInstall<typeof _Popover>(_Popover);
|
|
|
|
export default Popover;
|
|
export { Popover };
|
|
export type {
|
|
PopoverTheme,
|
|
PopoverAction,
|
|
PopoverTrigger,
|
|
PopoverPlacement,
|
|
} from './Popover';
|