ant-design-vue/components/popover/demo/arrow-point-at-center.vue

42 lines
881 B
Vue
Raw Normal View History

2021-09-01 07:04:46 +00:00
<docs>
---
order: 4
title:
zh-CN: 箭头指向
en-US: Arrow pointing
---
## zh-CN
设置了 `arrowPointAtCenter` 箭头将指向目标元素的中心
## en-US
The arrow points to the center of the target element, which set `arrowPointAtCenter`.
</docs>
<template>
<div>
<a-popover placement="topLeft">
<template #content>
<p>Content</p>
<p>Content</p>
</template>
<template #title>
<span>Title</span>
</template>
<a-button>Align edge / 边缘对齐</a-button>
</a-popover>
<a-popover placement="topLeft" arrow-point-at-center>
<template #content>
<p>Content</p>
<p>Content</p>
</template>
<template #title>
<span>Title</span>
</template>
<a-button>Arrow points to center / 箭头指向中心</a-button>
</a-popover>
</div>
</template>