I\'m using a my-link component to wrap an anchor tag on demand around various items. For that purpose a custom render method is used - however the
my-link
render
In Vue 2.5.x, you can use this to render text nodes:
render(createElement) { return createElement(() => { return document.createTextNode('Text'); }); }