<div class="xfcsInput">
<el-input type="number" v-model="input" size="mini"></el-input>
</div>
<style>
/* 全局css 加上以下代码,可以隐藏上下箭头 取消input的上下箭头 */
.xfcsInput input::-webkit-inner-spin-button {
-webkit-appearance: none !important;
}
.xfcsInput input::-webkit-outer-spin-button{
-webkit-appearance: none !important;
}
.xfcsInput input[type="number"]{
-moz-appearance: textfield;
}
</style>