28 lines
458 B
Vue
28 lines
458 B
Vue
![]() |
<template>
|
|||
|
<div>
|
|||
|
<md>
|
|||
|
## 基本
|
|||
|
最简单的用法,浮层的大小由内容区域决定。
|
|||
|
</md>
|
|||
|
<Popover title="Title">
|
|||
|
<template slot="content">
|
|||
|
<div>
|
|||
|
<p>Content</p>
|
|||
|
<p>Content</p>
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
<AntButton type="primary">Hover me</AntButton>
|
|||
|
</Popover>
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
import { Popover, Button } from 'antd'
|
|||
|
export default {
|
|||
|
components: {
|
|||
|
Popover,
|
|||
|
AntButton: Button,
|
|||
|
},
|
|||
|
}
|
|||
|
</script>
|