【Element UI】el-input 只允许输入英文

gengboxb 397 0

@input的时候替换

<el-input
    v-model="ruleForm.categoryCode"
    class="input-width"
    @input="($event) => {
        this.ruleForm.categoryCode = $event.replace(
            /[^\a-\z\A-\Z]/g,
            ''
        );                                
    }"
></el-input>

发表评论 取消回复
表情 图片 链接 代码

分享