variejs/framework

Not all fields are validated when one changes

Closed this issue · 1 comments

  • Varie Version: 0.7.2
  • Node Version: N/A

Description:

Have a validation depend on another field, when you change one field it does not check the other

Steps To Reproduce:

form: this.createForm({
        name: null,
        email: this.$parent.authAreaData.email,
        password: this.$parent.authAreaData.password,
        passwordConfirmed: null,
      }).validation({
        rules: {
          name: "required",
          email: "required|email",
          password: "required|min:8|confirmed",
        },
      }),

Fixed in 0.10.2