I have this js code:
var tags = [
'b',
'i'
'u',
];
var text = 'some simple text';
tags.forEach(tag => {
text = '<' + tag + '>' + text + '</' + tag + '>';
});
//print wrapped "text" variable on the page (Upd:) like: <b><i><u>Some text</u></i></b>
How to convert this to vue component/template?