My question seems to be easy, but couldn't figure this out.
I have this
<VSelect :items="common.users.options" ></VSelect> which just shows me select and its options.
common.users.options is something like this:
[
{ value:".25",text:"¼ hour" },
{ value:".5",text:"½ hour" },
]
The bad thing is that VSelect shows me ¼ and ½ as you see, without transforming it into fraction html. https://www.codetable.net/decimal/188
how do I show fraction into vselect option's without just plain ¼ ?