2017-11-03 18:46:18 +08:00
|
|
|
|
<script>
|
2019-01-12 11:33:27 +08:00
|
|
|
|
import Basic from './basic';
|
|
|
|
|
import ButtonGroup from './button-group';
|
|
|
|
|
import Disabled from './disabled';
|
|
|
|
|
import Ghost from './ghost';
|
|
|
|
|
import Icon from './icon';
|
|
|
|
|
import Loading from './loading';
|
|
|
|
|
import Multiple from './multiple';
|
|
|
|
|
import Size from './size';
|
|
|
|
|
import Block from './block';
|
|
|
|
|
import CN from '../index.zh-CN.md';
|
|
|
|
|
import US from '../index.en-US.md';
|
2018-01-25 17:51:23 +08:00
|
|
|
|
const md = {
|
|
|
|
|
cn: `# Button 按钮
|
2018-01-24 15:39:21 +08:00
|
|
|
|
按钮用于开始一个即时操作。
|
|
|
|
|
## 何时使用
|
|
|
|
|
标记了一个(或封装一组)操作命令,响应用户点击行为,触发相应的业务逻辑。
|
|
|
|
|
## 代码演示`,
|
2018-01-25 17:51:23 +08:00
|
|
|
|
us: `# Button
|
2018-01-24 15:39:21 +08:00
|
|
|
|
To trigger an operation.
|
|
|
|
|
## When To Use
|
|
|
|
|
A button means an operation (or a series of operations). Clicking a button will trigger corresponding business logic.
|
2018-09-05 21:28:54 +08:00
|
|
|
|
## Examples
|
2018-01-24 15:39:21 +08:00
|
|
|
|
`,
|
2019-01-12 11:33:27 +08:00
|
|
|
|
};
|
2018-01-25 17:51:23 +08:00
|
|
|
|
export default {
|
2018-03-20 21:48:01 +08:00
|
|
|
|
category: 'Components',
|
|
|
|
|
type: 'General',
|
2018-11-28 21:58:42 +08:00
|
|
|
|
zhType: '通用',
|
2018-03-20 21:48:01 +08:00
|
|
|
|
title: 'Button',
|
|
|
|
|
subtitle: '按钮',
|
2018-01-25 17:51:23 +08:00
|
|
|
|
render () {
|
2018-01-24 15:39:21 +08:00
|
|
|
|
return (
|
|
|
|
|
<div>
|
2018-01-25 17:51:23 +08:00
|
|
|
|
<md cn={md.cn} us={md.us}/>
|
2018-01-24 15:39:21 +08:00
|
|
|
|
<Basic />
|
|
|
|
|
<ButtonGroup />
|
|
|
|
|
<Disabled />
|
|
|
|
|
<Ghost />
|
2018-01-24 22:53:45 +08:00
|
|
|
|
<Icon/>
|
2018-01-24 15:39:21 +08:00
|
|
|
|
<Loading />
|
|
|
|
|
<Multiple />
|
|
|
|
|
<Size />
|
2018-09-05 21:28:54 +08:00
|
|
|
|
<Block />
|
2018-01-24 15:39:21 +08:00
|
|
|
|
<api>
|
2018-01-25 18:23:40 +08:00
|
|
|
|
<CN slot='cn' />
|
2018-01-25 16:29:23 +08:00
|
|
|
|
<US/>
|
2018-01-24 15:39:21 +08:00
|
|
|
|
</api>
|
|
|
|
|
</div>
|
2019-01-12 11:33:27 +08:00
|
|
|
|
);
|
2017-11-03 18:46:18 +08:00
|
|
|
|
},
|
2019-01-12 11:33:27 +08:00
|
|
|
|
};
|
2017-11-03 18:46:18 +08:00
|
|
|
|
</script>
|
2018-01-23 18:55:39 +08:00
|
|
|
|
<style>
|
|
|
|
|
[id^="components-button-demo-"] .ant-btn {
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
[id^="components-button-demo-"] .ant-btn-group > .ant-btn {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
</style>
|