-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Infinite update loop with :ready in second step #195
Comments
Hi, This is a problem with how you use |
It was just example. 2016-11-16 10:27 GMT+00:00 Razvan Stoenescu [email protected]:
|
ok, will investigate |
It should be easy to replicate. 2016-11-16 10:44 GMT+00:00 Razvan Stoenescu [email protected]:
|
Can you supply a *.vue file showcasing the issue to speed things up pls? |
I sent it by email right now. |
Just analyzed your code. The infinite loop is happening outside of Stepper's code logic. You are using computed properties which trigger each other because of |
Hi,
I have registration in STEPPER component.
I am using vee-validate for validation so
:ready
has to rely on successful validation of step.I have computed properties for that:
It is working perfectly fine with step-1, but if I apply
:ready="readyStep2"
to step-2 component, I am getting infinite update loop... No idea what is wrong and why it is working fine with first step, but not working with step-2 or step-3.What is important is that value of
readyStep2
is set properly so it is true when validation passes and false as long as it fails.The text was updated successfully, but these errors were encountered: