2018-03-07 21:36:15 +08:00
|
|
|
|
<script>
|
2019-01-12 11:33:27 +08:00
|
|
|
|
import Banner from './banner';
|
|
|
|
|
import Basic from './basic';
|
|
|
|
|
import Closable from './closable';
|
|
|
|
|
import CloseText from './close-text';
|
|
|
|
|
import Description from './description';
|
|
|
|
|
import Icon from './icon';
|
|
|
|
|
import Style from './style';
|
|
|
|
|
import SmoothClosed from './smooth-closed';
|
2018-03-07 21:36:15 +08:00
|
|
|
|
|
2019-01-12 11:33:27 +08:00
|
|
|
|
import CN from '../index.zh-CN.md';
|
|
|
|
|
import US from '../index.en-US.md';
|
2018-03-07 21:36:15 +08:00
|
|
|
|
const md = {
|
|
|
|
|
cn: `# Alert 警告提示
|
|
|
|
|
警告提示,展现需要关注的信息。
|
|
|
|
|
## 何时使用
|
|
|
|
|
- 当某个页面需要向用户显示警告的信息时。
|
|
|
|
|
- 非浮层的静态展现形式,始终展现,不会自动消失,用户可以点击关闭。
|
|
|
|
|
## 代码演示`,
|
|
|
|
|
us: `# Alert
|
|
|
|
|
Alert component for feedback.
|
|
|
|
|
## When To Use
|
|
|
|
|
- When you need to show alert messages to users.
|
|
|
|
|
- When you need a persistent static container which is closable by user actions.
|
2018-09-05 21:28:54 +08:00
|
|
|
|
## Examples
|
2018-03-07 21:36:15 +08:00
|
|
|
|
`,
|
2019-01-12 11:33:27 +08:00
|
|
|
|
};
|
2018-03-07 21:36:15 +08:00
|
|
|
|
export default {
|
|
|
|
|
category: 'Components',
|
|
|
|
|
subtitle: '警告提示',
|
|
|
|
|
type: 'Feedback',
|
2018-11-15 22:27:31 +08:00
|
|
|
|
zhType: '反馈',
|
2018-03-07 21:36:15 +08:00
|
|
|
|
title: 'Alert',
|
2019-09-28 20:45:07 +08:00
|
|
|
|
render() {
|
2018-03-07 21:36:15 +08:00
|
|
|
|
return (
|
2019-09-28 20:45:07 +08:00
|
|
|
|
<div id="components-alert-demo">
|
|
|
|
|
<md cn={md.cn} us={md.us} />
|
|
|
|
|
<Banner />
|
|
|
|
|
<Basic />
|
|
|
|
|
<Closable />
|
|
|
|
|
<CloseText />
|
|
|
|
|
<Description />
|
|
|
|
|
<Icon />
|
|
|
|
|
<Style />
|
|
|
|
|
<SmoothClosed />
|
2018-03-07 21:36:15 +08:00
|
|
|
|
<api>
|
2019-09-28 20:45:07 +08:00
|
|
|
|
<CN slot="cn" />
|
|
|
|
|
<US />
|
2018-03-07 21:36:15 +08:00
|
|
|
|
</api>
|
|
|
|
|
</div>
|
2019-01-12 11:33:27 +08:00
|
|
|
|
);
|
2018-03-07 21:36:15 +08:00
|
|
|
|
},
|
2019-01-12 11:33:27 +08:00
|
|
|
|
};
|
2018-03-07 21:36:15 +08:00
|
|
|
|
</script>
|
|
|
|
|
<style>
|
2018-03-11 15:27:34 +08:00
|
|
|
|
#components-alert-demo .ant-alert {
|
2018-03-07 21:36:15 +08:00
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|