Add htmlentities or v-html or something to select options
-
In earlier versions of Quasar, html entities such as ³ used to work as part of an options label for QSelect options, but that is not longer the case. There needs to be a way to support odd characters and/or “bold”, indentation, or whatever dynamically on options labels in QSelect. Anyone know a way in newer version (17+)?
BTW - all of this can be done with a standard html select:
<select> <option value="volvo" disabled>Volvo</option> <option value="saab"> Saab</option> <option value="vw">VW³</option> <option value="audi" style="font-weight: bold;">Audi</option> </select>
-
FYI … this is being added back