You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If You want to extend Vuelidation by custom rules just pass option object
Vue.use(Vuelidation,{methods: {customValidationRule(value,args){console.log(value,args)// log to console to see how it looksconstvalid=falseconstmsg='Some validation message'return[valid,msg]},},})
Hi! Great library!
What about adding custom rules? Or regex rule at least? :)
The text was updated successfully, but these errors were encountered: