skip to Main Content

Html – How to make css component responsive when adding content inside q-card

I am using vue and quasar and have this component: <template> <q-layout> <q-page-container style="background-color: #e0e5ea;"> <q-page class="column"> <menu-bar></menu-bar> <div class="q-ma-lg row col"> <q-card flat class="col" style="border-radius: 9px;"> <q-card-section> </q-card-section> </q-card> <q-card flat class="col q-ml-lg " style="border-radius: 9px"> <q-card-section> </q-card-section> </q-card>…

VIEW QUESTION

How to highlight text in a string – Javascript

Vue and Quasar frameworks String: "Lorem ipsum dolor sit amet CONSECTETUR adipiscing elit" Template The following code does not work <span:class=""> {{ highlightSearchExpression(string) }} /> Using v-html (works inconsistently; merge search word with other words) <span v-html="highlightSearchExpression(string)" :class="" /> Method…

VIEW QUESTION
Back To Top
Search