How to change checked icon on `q-option-group`
-
I want to change the checked-icon on a
q-option-group
https://quasar-framework.org/components/option-group.htmlI can successfully do this with
q-radio
via thechecked-icon
attribute https://quasar-framework.org/components/radio.html#Vue-Properties, but this attribute does not exist for aq-option-group
.How can I achieve this?
-
-
Seems to be what i’m looking for. I was not aware of
this.$q.icon.radio.checked[this.$q.theme] = 'check_circle'
`. Is this documented somewhere?Also any plans to add the
checked-icon
andunchecked-icon
to theq-option-group
similarly to how it’s available onq-radio
? -
@toymachiner62 said in How to change checked icon on `q-option-group`:
Is this documented somewhere?
No. I got it from the source code.
Also any plans to add the
checked-icon
andunchecked-icon
to theq-option-group
similarly to how it’s available onq-radio
?If you’d like, please make a suggestion on Github.
https://github.com/quasarframework/quasar/issues/new
Scott