When utilizing Vuelidate, the 'required' validator now accepts boolean 'false' as a valid value. To enforce required validation for checkboxes, you must use 'sameAs' such as sameAs: sameAs( () => true )
. How can 'requiredUnless' validation be implemented for checkboxes in Vuelidate? In this scenario, the checkbox is only mandated to be checked if a specific property does not hold a certain value.