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的文字居中显示。