2019-01-01 12:13:51 +08:00
|
|
|
// 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
|
|
|
|
|
2019-01-12 11:33:27 +08:00
|
|
|
import { TooltipCommon } from './tootip/common';
|
2020-08-18 10:12:57 +08:00
|
|
|
import { VNodeChild } from 'vue';
|
2020-08-31 14:59:56 +08:00
|
|
|
import { AntdComponent, AntdProps } from './component';
|
2020-08-21 22:10:10 +08:00
|
|
|
export declare class Popover extends AntdComponent {
|
2020-08-31 14:59:56 +08:00
|
|
|
$props: AntdProps & {
|
2020-08-18 10:12:57 +08:00
|
|
|
/**
|
|
|
|
* Content of the card
|
|
|
|
* @type any (string | slot | VNode)
|
|
|
|
*/
|
|
|
|
content?: VNodeChild | JSX.Element;
|
2019-01-01 12:13:51 +08:00
|
|
|
|
2020-08-18 10:12:57 +08:00
|
|
|
/**
|
|
|
|
* Title of the card
|
|
|
|
* @type any (string | slot | VNode)
|
|
|
|
*/
|
|
|
|
title?: VNodeChild | JSX.Element;
|
2020-08-30 22:59:47 +08:00
|
|
|
} & TooltipCommon;
|
2019-01-01 12:13:51 +08:00
|
|
|
}
|