What is the point of iconSet in quasar.config? #16223
Answered
by
metalsadman
BenJackGill
asked this question in
General - Components / Directives / etc
|
In the docs it says we need to specify the icon set in For example: framework: {
iconSet: 'svg-ionicons-v6'
}I have done that without errors. And then I have been using icons like this: <template>
<q-btn dense color="purple" round :icon="ionHome" class="q-ml-md" />
</template>
<script setup lang="ts">
import { ionHome } from "@quasar/extras/ionicons-v6";
</script>But if I comment out the So why do we bother updating |
Answered by
metalsadman
Aug 21, 2023
Replies: 1 comment 1 reply
|
https://quasar.dev/options/quasar-icon-sets#introduction |
1 reply
Answer selected by
BenJackGill
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://quasar.dev/options/quasar-icon-sets#introduction
Quasar components have their own icons. example notify icon displayed depending ontypeprops, qselect'sdefaultdropdown icon, icon used when you useclearableon quasar form components, etc... what you are displaying is not an example usage of quasar iconSet.