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/basic.md

22 lines
410 B

7 years ago
<cn>
#### 基本
7 years ago
最简单的用法,浮层的大小由内容区域决定。
7 years ago
</cn>
<us>
#### Basic
The most basic example. The size of the floating layer depends on the contents region.
</us>
```html
<template>
<a-popover title="Title">
7 years ago
<template slot="content">
7 years ago
<p>Content</p>
<p>Content</p>
7 years ago
</template>
7 years ago
<a-button type="primary">Hover me</a-button>
7 years ago
</a-popover>
7 years ago
</template>
7 years ago
```