Giter Site home page Giter Site logo

Custom validators about vuelidate HOT 3 CLOSED

vuelidate avatar vuelidate commented on May 22, 2024
Custom validators

from vuelidate.

Comments (3)

Frizi avatar Frizi commented on May 22, 2024 4

Hi!

Documentation is right, but I'm afraid i have to work a bit on cleaner wording and provide a few more examples.

Citing myself :P

make use of the function context (this) to access any value on your component or use provided parentVm to access sibling properties

The actual function context this gives you access to a thing i call "root VM", which is always your whole component. The third argument, parent VM, is always just the dataset which is a parent to the validated property, effectively giving you a "shortcut" to it's siblings. That's the usual use case for forms, so that's what sameAs is using by default.

Try that

export function uniqueEmailValidator (value, parentVm) {
  console.log('rootVm', this)
  console.log('value'. value)
  console.log('parentVm', parentVm)
}

Try hooking that validator on different depth levels, you will see the difference immediately :)

from vuelidate.

pylover avatar pylover commented on May 22, 2024

Interesting, thanks a lot. i'll check it

from vuelidate.

pylover avatar pylover commented on May 22, 2024

Thanks a lot,the function context: this is working well as well.

Sorry for taking your time, instead of the reading documentation carefully.

from vuelidate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.