[Vue.js] v-validate.continues

v-validate 의 continues 옵션

v-validate="'required|email'"

위와 같이 유효성 검사할 항목이 N개일 경우, required에서 실패하면 뒤에 rules를 검사하지 않는다.

By default vee-validate uses a fastExit strategy when testing the field rules, meaning when the first rule fails it will stop and will not test the rest of the rules. You can use the .continues modifier to force this behavior to test all rules regardless of their result.

Vue 공식문서

따라서, v-validate.continues와 같이 기입해줘야 한다.

태그: ,

업데이트:

댓글남기기