-
Notifications
You must be signed in to change notification settings - Fork 8
Vuelidate
Cláudio Medeiros edited this page Oct 5, 2022
·
3 revisions
// Importação
import { validate as isCPF } from 'validation-br/dist/cpf'
const fnCpf = helpers.withMessage('CPF inválido', isCPF)
// ou
const fnCpf = { $validator: isCPF, $message: 'CPF inválido' }
// Definição das regras do vuelidate
import { required, minLength } from '@vuelidate/validators'
const rules = {
cpf: { fnCpf },
}