element中 不想要 el-input 的上下按键的处理方法
作者:互联网
<el-input placeholder="请输入密码" v-model="input" show-password type=“number”></el-input>
其中又想要数字 又想不要 上下箭头 可以切换成 属性中添加 controls = false
<el-input-number v-model="num" @change="handleChange" :min="1" :max="10" label="描述文字" ></el-input-number>
标签:el,false,controls,element,上下,input,想要 来源: https://www.cnblogs.com/yuchengxiong/p/15038725.html