You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/popover/index.vue

62 lines
1.4 KiB

<script>
import Tooltip from '../tooltip'
import abstractTooltipProps from '../tooltip/abstractTooltipProps'
import PropTypes from '../_util/vue-types'
import { getOptionProps, getComponentFromProp } from '../_util/props-util'
const props = abstractTooltipProps()
export default {
name: 'popover',
props: {
...props,
prefixCls: PropTypes.string.def('ant-popover'),
transitionName: PropTypes.string.def('zoom-big'),
content: PropTypes.any,
title: PropTypes.any,
},
model: {
prop: 'visible',
event: 'change',
},
methods: {
getPopupDomNode () {
return this.$refs.tooltip.getPopupDomNode()
},
},
render (h) {
const { title, prefixCls, $slots } = this
const props = getOptionProps(this)
delete props.title
delete props.content
const tooltipProps = {
props: {
...props,
},
ref: 'tooltip',
on: this.$listeners,
}
return (
<Tooltip
{...tooltipProps}
>
<template slot='title'>
<div>
{(title || $slots.title) &&
<div class={`${prefixCls}-title`}>
{getComponentFromProp(this, 'title')}
</div>
}
<div class={`${prefixCls}-inner-content`}>
{getComponentFromProp(this, 'content')}
</div>
</div>
</template>
{this.$slots.default}
</Tooltip>
)
},
}
</script>