2

我正在使用 Bootstrap-Vue 表单输入,并使用 Vuelidate 进行验证。目前在用户输入时,我得到轮廓颜色(红色或绿色)和一个复选框或一个十字,具体取决于有效或无效。我现在想更改此行为,使其仅在模糊时显示。我在输入中添加了以下代码行,但是发生了相同的行为:

@blur="$v.form.code_part1.$touch()"

这是我输入的完整代码,请您解释一下我哪里出错了,或者如何正确处理这个问题?

<b-form-input
              :class="{ 'hasError': $v.form.code_part2.$error }"
              placeholder="Next Four"
              v-model="$v.form.code_part2.$model"
              @blur="$v.form.code_part1.$touch()"
              :state="$v.form.code_part2.$dirty ? !$v.form.code_part2.$error : null"
              class="form-control mb-3"
              name="Part 2"
              id="code_part2"
              type="text"
              maxlength="4"
              aria-label="Next Four"
></b-form-input>
4

1 回答 1

2

添加.native修饰符

@blur.native="$v.form.code_part1.$touch()"

将本机事件绑定到组件

于 2019-09-13T17:57:40.450 回答