当input为number类型时取消input的上下箭头

埃菲尔上的加菲猫 / 2023-06-06 / 原文

// 取消input的上下箭头
  ::v-deep input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
 
  }
 
  ::v-deep input::-webkit-outer-spin-button{
    -webkit-appearance: none !important;
 
  }
 
  ::v-deep input[type="number"]{
    -moz-appearance: textfield;
 
  }