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 has been archived by the owner on Aug 11, 2020. It is now read-only.
<tr v-for="item in positionen">
<td>
<textarea v-autosize="item.note" v-model="item.note">{{item.note}}</textarea>
</td>
</tr>
I ran into this with other plugins / functions too and it seems that its due to the fact, that those dom elements get inserted into the page dynamically (after the app has been started up).
in jquery you're able to address this with on(...). but how do you handle this in vue? i tried to modify the directive like this:
while it's working for me in different components, it doesnt in a list rendered on the basis of an array by v-for.
The text was updated successfully, but these errors were encountered: