diff --git a/src/stepper/index.js b/src/stepper/index.js index 2943a000f..1d4ec2830 100644 --- a/src/stepper/index.js +++ b/src/stepper/index.js @@ -86,12 +86,14 @@ export default createComponent({ computed: { minusDisabled() { return ( - this.disabled || this.disableMinus || this.currentValue <= this.min + this.disabled || this.disableMinus || this.currentValue <= +this.min ); }, plusDisabled() { - return this.disabled || this.disablePlus || this.currentValue >= this.max; + return ( + this.disabled || this.disablePlus || this.currentValue >= +this.max + ); }, inputStyle() {