<el-input-number
v-model="min_price"
:controls='false' // 不显示管制操作按钮
:precision="3" //精度
:max="maxPrice"
min=""
style="width:90px"
></el-input-number>
min=”” 不能输出0
<el-input-number
v-model="min_price"
:controls='false' // 不显示管制操作按钮
:precision="3" //精度
:max="maxPrice"
min=""
style="width:90px"
></el-input-number>
min=”” 不能输出0
发表回复