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

794 B

#### 箭头指向 设置了 `arrowPointAtCenter` 后,箭头将指向目标元素的中心。 #### Arrow pointing The arrow points to the center of the target element, which set `arrowPointAtCenter`.
<template>
  <div>
    <a-popover placement="topLeft">
      <template slot="content">
        <p>Content</p>
        <p>Content</p>
      </template>
      <span slot="title">Title</span>
      <a-button>Align edge / 边缘对齐</a-button>
    </a-popover>
    <a-popover placement="topLeft" arrowPointAtCenter>
      <template slot="content">
        <p>Content</p>
        <p>Content</p>
      </template>
      <span slot="title">Title</span>
      <a-button>Arrow points to center / 箭头指向中心</a-button>
    </a-popover>
  </div>
</template>