We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
input
show-confirm-bar
1 parent 46a5308 commit bd5f62aCopy full SHA for bd5f62a
uview-ui/components/u-input/u-input.vue
@@ -27,6 +27,7 @@
27
:selection-end="uSelectionEnd"
28
:selection-start="uSelectionStart"
29
:cursor-spacing="getCursorSpacing"
30
+ :show-confirm-bar="showConfirmbar"
31
@input="handleInput"
32
@blur="handleBlur"
33
@focus="onFocus"
@@ -48,6 +49,7 @@
48
49
50
51
52
53
54
55
@@ -206,6 +208,11 @@ export default {
206
208
trim: {
207
209
type: Boolean,
210
default: true
211
+ },
212
+ // 是否显示键盘上方带有”完成“按钮那一栏
213
+ showConfirmbar:{
214
+ type:Boolean,
215
+ default:true
216
}
217
},
218
data() {
0 commit comments