bee-form-group
v2.0.1
Published
bee-form-group ui component for react
Downloads
148
Readme
bee-form-group
FormGroup
组件用来包裹像 form control
lable
help text
validate state
的元素
安装步骤
$ git clone https://github.com/tinper-bee/bee-form-group
$ cd bee-form-group
$ npm install
$ npm run dev
使用
使用单独的bee-form-group包
组件引入
先进行下载bee-form-group包
npm install --save bee-form-group
组件调用
import FormGroup from 'bee-form-group';
import FormControl from 'bee-form-control';
React.render(<div>
<div>
<FormGroup>
<FormControl type="text" />
</FormGroup>
</div>
</div>, document.getElementById('target'));
样式引入
- 可以使用link引入dist目录下bee-form-group.css
<link rel="stylesheet" href="./node_modules/build/bee-form-group.css">
- 可以在js中import样式
import "./node_modules/src/FormGroup.scss"
//或是
import "./node_modules/build/bee-form-group.css"
API
|参数|说明|类型|默认值|
|---|----|---|------|
|validationState|oneOf:success
error
warning
|string|''|