I am trying to use the Filter feature in Vue.js to add html tags inside a String, the documents suggests this should be somehow feasible but I'm getting nowhere. The point is the data should just a String that's brought into the html and before it's mounted the filter should search the data for key words (e.g. 'See REFERENCE') and the REFERENCE word should be turned into an anchor link.
E.g.
<p>{{String | filterFunction}}</p>
Instead of piping out say:
<p>The text string with a link</p>
It should pipe out the string but with a node insert.
<p>The text string with a <a href="someLink">link</a></p>
The Vue documentation suggests javascript component assemblage is possible but so far the testing has gone poorly.
{{ String | filterFunction }}consist of an object or just a string?