#### 组件名称
gov-button

#### 解释：
按钮组件

#### 属性说明：
|属性名 | 类型 | 必填 | 默认值 |说明 |
|---|---|---|---|---|
|buttonSize |String |否||按钮大小类型，有大、中、小，分别为large、middle、small|
|buttonColor |String |否||按钮颜色，有主、辅、底部蓝色按钮，分别为primary、plain、default|
|buttonDisabled |Boolean |否|false|按钮是否禁用|
|buttonIcon |String |否||按钮是否需要icon，如果需要，传icon路径|
|buttonText |String |否||按钮文字|

#### 代码示例
swan:
```
 <gov-button
        button-size="large"
        button-color="default"
        button-text="带icon的按钮"
        button-icon="../../../../src/calendar/images/arrow-right.png"
        button-disabled="{{false}}">
    </gov-button>
    自定义样式的按钮：
    <gov-button
        button-size="large"
        button-color="default"
        button-text="自定义样式的按钮"
        gov-button="textColor"
        bind:click="clickFn"
        button-disabled="{{false}}">
    </gov-button>
```
js:
```
Page({
    clickFn() {
        swan.showToast({
            title: '点击按钮'
        });
    }
});
```
css:
```
.textColor {
    color: #306e1d !important;
    width: 300px !important;
    font-size: 20px !important;
    background: #a4f66a !important;
}
```