Skip to content

Commit 42a6a56

Browse files
authored
docs: add custom icon integrations section (#182)
* docs: add custom icon integrations section * chore: wording
1 parent 50ee2d0 commit 42a6a56

File tree

4 files changed

+75
-3
lines changed

4 files changed

+75
-3
lines changed

docs/.vitepress/config.ts

+6
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ export default withPwa(defineConfig({
8585
}, {
8686
text: 'SVG Icons',
8787
link: '/guide/icons/svg-icons',
88+
}, {
89+
text: 'Integrations',
90+
link: '/guide/icons/integrations',
8891
}],
8992
},
9093
{
@@ -166,6 +169,9 @@ export default withPwa(defineConfig({
166169
}, {
167170
text: 'SVG Icons',
168171
link: '/guide/icons/svg-icons',
172+
}, {
173+
text: 'Integrations',
174+
link: '/guide/icons/integrations',
169175
}],
170176
collapsed: true,
171177
}, {

docs/guide/i18n.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ outline: deep
55
# Internationalization
66

77
::: warning
8-
Requires latest [Edge Release Channel](https://github.com/nuxt-modules/i18n#edge-release-channel) [@nuxtjs/i18n](https://v8.i18n.nuxtjs.org/) Nuxt module: `npm:@nuxtjs/i18n-edge`, you may need to reinstall the module to get the latest edge version.
98

10-
When the new version `8.0.0-rc.6` released, it should be fine: `8.0.0-rc.5` is breaking Nuxt `#app` module augmentation (it is using `#app/nuxt` internally).
9+
From version `v0.8.0`, this module requires latest [@nuxtjs/i18n](https://v8.i18n.nuxtjs.org/) Nuxt module: `^8.0.0`.
1110
:::
1211

1312
Install and configure [@nuxtjs/i18n](https://v8.i18n.nuxtjs.org/) Nuxt module, and you're ready to use Vuetify [internationalization](https://vuetifyjs.com/en/features/internationalization/) features.

docs/guide/icons/integrations.md

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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+
:::

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vuetify-nuxt-module",
33
"type": "module",
44
"version": "0.8.0",
5-
"packageManager": "pnpm@8.13.1",
5+
"packageManager": "pnpm@8.14.0",
66
"description": "Zero-Config Nuxt Module for Vuetify",
77
"author": "userquin <[email protected]>",
88
"license": "MIT",

0 commit comments

Comments
 (0)