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.
60 lines
1.4 KiB
60 lines
1.4 KiB
<script>
|
|
import Basic from './basic.md'
|
|
import ArrowPointAtCenter from './arrow-point-at-center.md'
|
|
import AutoAdjustOverflow from './auto-adjust-overflow.md'
|
|
import Placement from './placement.md'
|
|
import CN from '../index.zh-CN.md'
|
|
import US from '../index.en-US.md'
|
|
|
|
const md = {
|
|
cn: `# Tooltip
|
|
|
|
简单的文字提示气泡框。
|
|
|
|
## 何时使用
|
|
|
|
鼠标移入则显示提示,移出消失,气泡浮层不承载复杂文本和操作。
|
|
|
|
可用来代替系统默认的 'title' 提示,提供一个'按钮/文字/操作'的文案解释。
|
|
## 代码演示`,
|
|
us: `# Tooltip
|
|
|
|
A simple text popup tip.
|
|
|
|
# When To Use
|
|
|
|
- The tip is shown on mouse enter, and is hidden on mouse leave. The Tooltip doesn't support complex text or operations.
|
|
- To provide an explanation of a 'button/text/operation'. It's often used instead of the html 'title' attribute.
|
|
## Examples
|
|
`,
|
|
}
|
|
export default {
|
|
category: 'Components',
|
|
subtitle: '文字提示',
|
|
type: 'Data Display',
|
|
title: 'Tooltip',
|
|
render () {
|
|
return (
|
|
<div>
|
|
<md cn={md.cn} us={md.us}/>
|
|
<br/>
|
|
<Basic />
|
|
<br/>
|
|
<Placement />
|
|
<br/>
|
|
<ArrowPointAtCenter />
|
|
<br/>
|
|
<AutoAdjustOverflow />
|
|
<br/>
|
|
<api>
|
|
<template slot='cn'>
|
|
<CN/>
|
|
</template>
|
|
<US/>
|
|
</api>
|
|
</div>
|
|
)
|
|
},
|
|
}
|
|
</script>
|