We have a service that provides us with a news feed. This feed is an array of different articles. Each article has an attribute "html", which contains the content written in HTML.
Now it happens that an article contains a link Link.
In my app, which I like to write in NavtiveScript-Vue, I display the HTML code using a HtmlView component.
How do I get my app to react to the link? I already thought about the fact that the HtmlView component may emit an event when the link is clicked. Unfortunately this is not the case.
Do you have any ideas? Thank you!