antd Popover 气泡卡片,首次位置不对解决方法
解决Ant Design of Vue - Popover 气泡卡片 首次位置不对问题想要效果:首次进入效果:再次移入显示就对了,解决方法:加上高宽(:overlayStyle="{ ‘width’: ‘208.34px’, ‘height’: ‘267px’ }")如下即可<a-popover title="Title" :overlayStyle="{ 'width': '208.34p
·
解决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>
更多推荐
已为社区贡献2条内容
所有评论(0)