|
|
||
|---|---|---|
| .. | ||
| common.js | ||
| readme.txt | ||
| uni-easyinput - 原始文件.vue | ||
| uni-easyinput.vue | ||
readme.txt
添加插槽:
<slot name='prefixIcon'></slot>
<slot name='suffixIcon'></slot>
聚焦样式:
'is-foucs': this.focusShow
不包含边框时, 也需要红色提示信息;
'is-input-error-border': this.inputBorder && this.msg, 改为:
'is-input-error-border': this.msg,
line: 535
.uni-easyinput__placeholder-class {
color: #B3B3B3;
font-size: 12px; --> 改为: font-size: 32rpx;
line: 612
.uni-easyinput__placeholder-class
添加: font-size: 27rpx;
改为默认隐藏清空按钮
clearable: {
type: Boolean,
default: false
},