|
| 1 | +# Integrations |
| 2 | + |
| 3 | +Vuetify supports custom icon sets using Vue icon libraries. This section is about how to integrate the following icon libraries with `vuetify-nuxt-module`: |
| 4 | +- [unplugin-icons/nuxt](https://github.com/unplugin/unplugin-icons) |
| 5 | +- [Iconify for Vue](https://iconify.design/docs/icon-components/vue/) |
| 6 | +- [Nuxt Icon](https://github.com/nuxt-modules/icon) |
| 7 | +- [Vue Phosphor Icons](https://github.com/phosphor-icons/vue) |
| 8 | + |
| 9 | +Please refer to the Vuetify documentation for more information about [custom icon sets](https://vuetifyjs.com/en/features/icon-fonts/#creating-a-custom-icon-set), all the examples in this page using a custom icon set implementation. |
| 10 | + |
| 11 | +Once the custom icon set is implemented, you need to configure `vuetify-nuxt-module` to use it: |
| 12 | +- add `icons.defaultSet = 'custom'` in your `vuetify.config.ts` file or in the `vuetifyOptions` object in your `nuxt.config.ts` file |
| 13 | +- register the custom icon set in the Vuetify options via a new Nuxt plugin using the `vuetify:before-create` hook |
| 14 | +- register the custom icon component in the Vue application via previous Nuxt plugin using `vuetify:ready` hook: this step is optional, only required if you want to use the custom icon component in your application |
| 15 | + |
| 16 | +If you want to use another icon set library, you should change the corresponding icon set implementation in the examples below: `unplugin-icons`, Iconify Vue and Nuxt Icon using material design icons from Iconify icons. |
| 17 | + |
| 18 | +You can also use multiple icon sets, check [multiple-icon-sets](/guide/icons/#multiple-icon-sets) and [Vuetify documentation](https://vuetifyjs.com/en/features/icon-fonts/#multiple-icon-sets). |
| 19 | + |
| 20 | +## unplugin-icons/nuxt |
| 21 | + |
| 22 | +You can check this [repo using material design icons](https://github.com/userquin/vuetify-nuxt-unplugin-icons-integration), using `unplugin-icons/nuxt` Nuxt module: |
| 23 | +- default icon set in [nuxt.config.ts](https://github.com/userquin/vuetify-nuxt-unplugin-icons-integration/blob/main/nuxt.config.ts) configuration file |
| 24 | +- custom icon set in [unplugin-icons/index.ts](https://github.com/userquin/vuetify-nuxt-unplugin-icons-integration/blob/main/unplugin-icons/index.ts) icon set |
| 25 | +- custom icon set registration in [plugins/custom-icons.ts](https://github.com/userquin/vuetify-nuxt-unplugin-icons-integration/blob/main/plugins/custom-icons.ts) plugin |
| 26 | + |
| 27 | +You can run this repo in Stackblitz, check the [README file](https://github.com/userquin/vuetify-nuxt-unplugin-icons-integration). |
| 28 | + |
| 29 | +::: warning |
| 30 | +Not all icons have been included, you will need to review the [unplugin-icons/index.ts](https://github.com/userquin/vuetify-nuxt-unplugin-icons-integration/blob/main/unplugin-icons/index.ts) file including the icons you want to use. |
| 31 | +::: |
| 32 | + |
| 33 | +## Iconify for Vue |
| 34 | + |
| 35 | +You can check an [example in Stackblitz using material design icons](https://stackblitz.com/edit/nuxt-starter-al4k5x): |
| 36 | +- default icon set in [vuetify.config.ts](https://stackblitz.com/edit/nuxt-starter-al4k5x?file=vuetify.config.ts) configuration file |
| 37 | +- custom icon set in [iconify/index.ts](https://stackblitz.com/edit/nuxt-starter-al4k5x?file=iconify%2Findex.ts) icon set |
| 38 | +- custom icon set registration in [plugins/custom-icons.ts](https://stackblitz.com/edit/nuxt-starter-al4k5x?file=plugins%2Fcustom-icons.ts) plugin |
| 39 | +- custom icon component registration in [plugins/custom-icons.ts](https://stackblitz.com/edit/nuxt-starter-al4k5x?file=plugins%2Fcustom-icons.ts) plugin |
| 40 | + |
| 41 | +::: warning |
| 42 | +Not all icons have been included, you will need to review the [iconify/index.ts](https://stackblitz.com/edit/nuxt-starter-al4k5x?file=iconify%2Findex.ts) file including the icons you want to use. |
| 43 | + |
| 44 | +Iconify for Vue is client side only, the icons will be rendered only on the client (you will see the icons loaded once the component requests them to the [Iconify API](https://iconify.design/docs/api/)). |
| 45 | +::: |
| 46 | + |
| 47 | +## Nuxt Icon |
| 48 | + |
| 49 | +You can check this [repo using material design icons](https://github.com/userquin/vuetify-nuxt-icon-integration): |
| 50 | +- default icon set in [nuxt.config.ts](https://github.com/userquin/vuetify-nuxt-icon-integration/blob/main/nuxt.config.ts) configuration file |
| 51 | +- custom icon set in [nuxt-icon-set/common.ts](https://github.com/userquin/vuetify-nuxt-icon-integration/blob/main/nuxt-icon-set/common.ts) icon set |
| 52 | +- custom icon set registration in [plugins/custom-icons.ts](https://github.com/userquin/vuetify-nuxt-icon-integration/blob/main/plugins/custom-icons.ts) plugin |
| 53 | +- you can choose between `Icon` or `IconCSS`, check previous plugin file |
| 54 | + |
| 55 | +You can run this repo in Stackblitz, check the [README file](https://github.com/userquin/vuetify-nuxt-icon-integration). |
| 56 | + |
| 57 | +## Vue Phosphor Icons |
| 58 | + |
| 59 | +You can check an [example in Stackblitz](https://stackblitz.com/edit/nuxt-starter-cgbvrr): |
| 60 | +- default icon set in [vuetify.config.ts](https://stackblitz.com/edit/nuxt-starter-cgbvrr?file=vuetify.config.ts) configuration file |
| 61 | +- custom icon set in [phosphor/index.ts](https://stackblitz.com/edit/nuxt-starter-cgbvrr?file=phosphor%2Findex.ts) icon set |
| 62 | +- custom icon set registration in [plugins/custom-icons.ts](https://stackblitz.com/edit/nuxt-starter-cgbvrr?file=plugins%2Fcustom-icons.ts) plugin |
| 63 | +- custom icon component registration in [plugins/custom-icons.ts](https://stackblitz.com/edit/nuxt-starter-cgbvrr?file=plugins%2Fcustom-icons.ts) plugin |
| 64 | + |
| 65 | +::: warning |
| 66 | +Not all icons have been included, you will need to review the [phosphor/index.ts](https://stackblitz.com/edit/nuxt-starter-cgbvrr?file=phosphor%2Findex.ts) file including the icons you want to use. |
| 67 | +::: |
0 commit comments