[Vuejs]-Vuelidate validation object pass as a prop

0👍

You need to use this inside the script part of the component

validations: {    
  myObject: [...this.validations]
}

Props name without this only work inside the template part.

Leave a comment