here's one of my computed methods:
filtered() {
return this.groups.map(group => {
return group.replace(this.search, '<span class="has-background-primary">' + this.search + '</span>');
})
}
This is supposed to highlight text in a searchbox, but the < is escaped to <. What should i do to suppress escaping or how can I do it better?