# sxw-checkbox

## 安装
```
npm install sxw-checkbox --save

import GdbCheckbox from 'sxw-checkbox';

<gdb-checkbox v-model="value">多选框</gdb-checkbox>

```

## options
```
参数              参数名                类型        默认值
value             是否选中             Boolean      false
color             选中的颜色           String       #12b484
fontSize          字体大小             Number       12
fontColor         字体颜色             String       #666
disabled          禁止点击             Boolean      false

```

## events
```
事件名称               说明                 回调参数
change		  多选框选中状态改变时       	   是否选中	

