I have a Vue input number component which accepts precision upto five decimal points. Its all fine except it shows the default value 0.000000 which is kinda boring to look at because this field is optional. I am using el-input-number component from the element-ui. Is there any tweak to remove the boring default value of 0.000000 ?
<span class="custom-label">
Optional Multiplier Amount
</span>
<el-input-number
:controls="false"
v-model="form.multiplier_amount"
:size="size"
:step="0.1"
:precision="5"
class="optional-multiplier"
/>
data(){
return{
form: {
multiplier_amount: null
}
}
}

placeholder="..."doesn't work add a ref to access the element (or traverse through it to the input) to change the placeholdermultiplier_amount: 0.00000 || ''in yourdata()/computed().form.multiplier_amount = 0.00000? then its obvious, remove the value :/