vuelidate 참/거짓 확인 커스텀 체크박스가 있습니다. True/False 값이 올바르게 전환됩니다. { "first_name": "", "last_name": "", "username": "", "email": "", "terms_accepted": true } 실제 값을 검증하려면 어떻게 해야 합니까? 내 검증규칙은 지금이야. terms_accepted: { required }, 간단한 함수를 사용할 수 있습니다. terms_accepted: { checked: value => value === true } 언급URL : https://stackoverflow.com/questions/52781162/vuelidate-checking-for-true-false