## 1.0.1（2022-3-21）
- 升级到uni-ui@1.4.12
- eslint修复
```js
// Expected '===' and instead saw '=='.
if (this.labelPos == 'left' && this.msg != false && this.msg != '') {
    style.paddingBottom = '0px'
    this.errorBottom = true
    this.errorTop = false
} else if (this.labelPos == 'top' && this.msg !== false && this.msg != '') {
    this.errorBottom = false
    this.errorTop = true
} else {
    // style.paddingBottom = ''
    this.errorTop = false
    this.errorBottom = false
}
// FIXME value never use
const promise = null
const rl = true
```


## 1.0.1（2022-4-15）
- 增加参数 @property {String }   contentPosition = [left|right] content的位置（默认left）
- 增加参数 @property {Boolean }  showLabel = [true|false] label的文字对齐方式（默认true）
- 修改必选*样式