UNPKG

cjd-parkball

Version:

> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用

27 lines (20 loc) 471 B
--- category: 2 title: block 按钮 title_en: block Button --- zh-CN `block`属性将使按钮适合其父宽度。 en-US `block` property will make the button fit to its parent width. ````jsx import { Button } from 'parkball'; ReactDOM.render( <div> <Button type="primary" block>Primary</Button> <Button block>Default</Button> <Button type="dashed" block>Dashed</Button> <Button type="danger" block>danger</Button> </div>, mountNode); ````