Commit 770f0ada authored by baiyaaaaa's avatar baiyaaaaa Committed by 杨奕

fix input-number style problem

parent 8408f629
...@@ -8,17 +8,19 @@ ...@@ -8,17 +8,19 @@
> >
<span <span
v-if="controls" v-if="controls"
class="el-input-number__decrease el-icon-minus" class="el-input-number__decrease"
:class="{'is-disabled': minDisabled}" :class="{'is-disabled': minDisabled}"
v-repeat-click="decrease" v-repeat-click="decrease"
> >
<i class="el-icon-minus"></i>
</span> </span>
<span <span
v-if="controls" v-if="controls"
class="el-input-number__increase el-icon-plus" class="el-input-number__increase"
:class="{'is-disabled': maxDisabled}" :class="{'is-disabled': maxDisabled}"
v-repeat-click="increase" v-repeat-click="increase"
> >
<i class="el-icon-plus"></i>
</span> </span>
<el-input <el-input
:value="currentValue" :value="currentValue"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment