It might be basic question,however I can't find the answer and I have no idea it is possible or not.
I am not familliar with vue
What I want to do is like this
<html>
[[parse()]]
</html>
new Vue({
methods: {
parse(){
return "<div>test</div>"
}
}
});
Normally it shows the <div>test<div> as strings not html tags,
However I want to eval this return variable as html.
Is it possible?