解决Ant Design of Vue - Popover 气泡卡片 首次位置不对问题

想要效果:

在这里插入图片描述

首次进入效果:

在这里插入图片描述

再次移入显示就对了,解决方法:加上高宽(:overlayStyle="{ ‘width’: ‘208.34px’, ‘height’: ‘267px’ }")或者:在 slot=“content” 下里面元素加高宽!如下即可

<a-popover title="Title" :overlayStyle="{ 'width': '208.34px', 'height': '267px' }">
    <template slot="content">
        <p>Content</p>
        <p>Content</p>
        <img src="123.png" width="100">
    </template>
    <a-button type="primary">Hover me</a-button>
</a-popover>
Logo

前往低代码交流专区

更多推荐