ant-design-vue/types/popover.d.ts
2020-08-31 14:59:56 +08:00

23 lines
671 B
TypeScript

// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
import { TooltipCommon } from './tootip/common';
import { VNodeChild } from 'vue';
import { AntdComponent, AntdProps } from './component';
export declare class Popover extends AntdComponent {
$props: AntdProps & {
/**
* Content of the card
* @type any (string | slot | VNode)
*/
content?: VNodeChild | JSX.Element;
/**
* Title of the card
* @type any (string | slot | VNode)
*/
title?: VNodeChild | JSX.Element;
} & TooltipCommon;
}