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
I use the validator extension and I am getting exception if v-model expression is more than one level ie form.name.
this is the line where exception occurred
if(!vm.$get('validator.'+model))
Base on the documentation, $get method should return undefined instead of throwing an error. I check the exports.$get method and there is no exception handling logic either.
exports.$get = function (exp) {
var res = expParser.parse(exp)
if (res) {
return res.get.call(this, this)
}
}
why is $get method throwing error in this case?
The text was updated successfully, but these errors were encountered:
I use the validator extension and I am getting exception if v-model expression is more than one level ie form.name.
this is the line where exception occurred
if(!vm.$get('validator.'+model))
Base on the documentation, $get method should return undefined instead of throwing an error. I check the exports.$get method and there is no exception handling logic either.
why is $get method throwing error in this case?
The text was updated successfully, but these errors were encountered: