Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当表单进入视图时,我们不应该验证表单。 在用户与输入交互后,应该激活它的验证。
您只需要检查它是否脏:
<b-form-input v-model="name" @input="$v.name.$touch()" :state="$v.name.$dirty ? !$v.name.$error : null" />
如果您不想要有效的状态(is-valid类),那么:
is-valid
<b-form-input v-model="name" @input="$v.name.$touch()" :state="!$v.name.$error && null" />