el-inputは数値と小数点のみを入力でき、上下の矢印は表示されません

コードは次のように表示されます。

 <el-input  class="specificationInput" v-model="item.price" placeholder="价格" min="0" size="medium" type="number" oninput = "value=value.replace(/[^\d.]/g,'')" ></el-input>

cssスタイルは上下の矢印を表示しません

/deep/ input::-webkit-outer-spin-button,
   /deep/ input::-webkit-inner-spin-button {
    
    
      -webkit-appearance: none !important;
    }
   /deep/ input[type='number'] {
    
    
      -moz-appearance: textfield !important;
    }

おすすめ

転載: blog.csdn.net/weixin_42349568/article/details/114375445