commit
1a6046f005
1 changed files with 8 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
<Input-number
|
||||
v-if="!range && showInput"
|
||||
:min="min"
|
||||
:size="inputSize"
|
||||
:max="max"
|
||||
:step="step"
|
||||
:value="exportValue[0]"
|
||||
|
@ -120,6 +121,13 @@
|
|||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
inputSize: {
|
||||
type: String,
|
||||
default: 'default',
|
||||
validator (value) {
|
||||
return oneOf(value, ['small', 'large', 'default']);
|
||||
}
|
||||
},
|
||||
showStops: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
|
|
Loading…
Add table
Reference in a new issue