0👍
Because you don’t change the data value. As src
is bound to postForm.avatar
, you shoud be changing this data instead of modifying DOM directly:
this.postForm.avatar = $api.dom("#avatar")
instead of
$api.attr($api.dom("#avatar"), 'src', val);
- [Vuejs]-Simple Nested Dynamic Route
- [Vuejs]-Error: The selector did not select any valid DOM element. Please check on which element you called AutoNumeric
Source:stackexchange.com