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/tooltip/demo/arrow-point-at-center.vue

15 lines
417 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<div>
<md>
## 箭头指向
设置了 `arrowPointAtCenter` 箭头将指向目标元素的中心
</md>
<a-tooltip placement="topLeft" title="Prompt Text">
<a-button>Align edge / 边缘对齐</a-button>
</a-tooltip>
<a-tooltip placement="topLeft" title="Prompt Text" arrowPointAtCenter>
<a-button>Arrow points to center / 箭头指向中心</a-button>
</a-tooltip>
</div>
</template>