ant-design-vue/components/tooltip/demo/basic.md

21 lines
254 B
Markdown
Raw Normal View History

2018-03-22 10:19:12 +00:00
<cn>
#### 基本
最简单的用法。
</cn>
<us>
#### Basic
The simplest usage.
</us>
2019-10-09 10:32:23 +00:00
```tpl
2018-03-22 10:19:12 +00:00
<template>
<a-tooltip>
2019-09-28 12:45:07 +00:00
<template slot="title">
2018-03-22 10:19:12 +00:00
prompt text
</template>
Tooltip will show when mouse enter.
</a-tooltip>
</template>
```