Bootstrap

el-input接收到后端传来的数字保留两位小数

1,el-input一般都是由v-model绑定数据的,那么怎么把接收到的数据保留两位小数呢

<div class="inputDIV" style=""><el-input type="text"   v-model="Number(List.price).toFixed(2)"  readonly="readonly" ></el-input></div>
           

如上图所示,Number(List.price).toFixed(2)才可以实现保留两位小数,如果直接用toFixed()会报错。 

2,如果我们还想让el-input的文字居中显示呢,据我了解到的需要在外边加上一个div

.inputDIV>>>.el-input__inner {
    border: none;
    text-align: center;
  }

div的class是inputDIV,border: none; 设置el-input没有边框,text-align: center;设置el-input的文字居中显示。

悦读

道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。

;