support Input min & max prop

This commit is contained in:
baiyaaaaa 2016-11-08 20:13:52 +08:00
parent 60a812ad18
commit 547293e366

View File

@ -26,6 +26,8 @@
:minlength="minlength"
:autocomplete="autoComplete"
:autofocus="autofocus"
:min="min"
:max="max"
:form="form"
:value="value"
ref="input"
@ -95,7 +97,9 @@
},
form: String,
maxlength: Number,
minlength: Number
minlength: Number,
max: {},
min: {}
},
methods: {