recently I want to convert a stirng to Dom in a vue component, but it does\'t work as my expectation. My code looks like this:
// what I wrote in the templ
A possible solution is:
Template:
{{{libText}}}
Notice triple {} for get raw html/text interpretation.
Javascript:
Vue.component(... , {
template: ... ,
data: function () {
return ...
}
},
computed: {
libText:function(){
// return directly html
var str="some html
";
return str;
}
},
methods:{...}
});