How to highlight text in a string
Vue and Quasar frameworks String: "Lorem ipsum dolor sit amet CONSECTETUR adipiscing elit" Template The following code does not work <span:class="[highlight]"> {{ highlightSearchExpression(string) }} /> Using v-html (works inconsistently; merge search word with other words) <span v-html="highlightSearchExpression(string)" :class="[highlight]" /> Method highlightSearchExpression: function (str) { let searchWords = ‘CONSECTETUR’; if (str && searchWords) { //In case… Read More How to highlight text in a string