I have a text which has links inside in it. But I add these links(anchor elements) after the view is rendered(I fetch link information from server and insert anchor element for each word). Each link has call to a function inside my container, but I guess because the links are inserted to the page after render, they don't get bound to the model methods. How can I get these links click events bound to the method after render?
Here is my component :
<div class="info-text" v-html="descriptionShown"></div>
