在我的vue 2.5.17应用程序中,我有一个选择输入和文本输入,并且我创建了一个验证规则,仅可填写其中一个:
bottom_left_to_top_right?
我发现了这个:
https://baianat.github.io/vee-validate/guide/custom-rules.html#creating-a-custom-rule
但是我很困惑如何在我的情况下使用它。我尝试:
search_array
但是即使我始终将其设置为false,也不会触发我的自定义错误
哪种方法正确?
谢谢!
答案 0 :(得分:2)
添加自定义规则后,您需要在组件(在v-validate
中)中使用它:
<input
class="form-control"
id="new_user_list_title"
v-model="new_user_list_title"
@change="onChangeBewUserListTitle($event);"
v-validate="'new_user_list_title'">