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
{{ message }}
This repository was archived by the owner on May 3, 2018. It is now read-only.
We are having a slight problem using vuejs in an existing web.
The web has automatic validate/format functionality bound to all input fields (this is done by jQuery)
We are using vue for a part of the site to handle a multi step wizard, this works very well except that our
input field validation/format does not trigger a change in the value stored in vue :(
eg.
if (isvalid.valid) {
var v = _inputs.format($input._type, $input.val());
$input.val(v); // -- this changes the displayed value in the actual dom input field but NOT the value in vuejs
}
Is there any way to tell vue to re-read the input field or can we somehow access the vuejs value and set that manually?