diff --git a/docs/components/content/examples/CommandPaletteExampleGroups.vue b/docs/components/content/examples/CommandPaletteExampleGroups.vue index f05f1f16..3a9caf1c 100644 --- a/docs/components/content/examples/CommandPaletteExampleGroups.vue +++ b/docs/components/content/examples/CommandPaletteExampleGroups.vue @@ -5,9 +5,9 @@ const toast = useToast() const commandPaletteRef = ref() const users = [ - { id: 'benjamincanac', label: 'benjamincanac', href: 'https://github.com/benjamincanac', target: '_blank', avatar: { src: 'https://ipx.nuxt.com/s_16x16/gh_avatar/benjamincanac', srcset: 'https://ipx.nuxt.com/s_32x32/gh_avatar/benjamincanac 2x' } }, - { id: 'Atinux', label: 'Atinux', href: 'https://github.com/Atinux', target: '_blank', avatar: { src: 'https://ipx.nuxt.com/s_16x16/gh_avatar/Atinux', srcset: 'https://ipx.nuxt.com/s_32x32/gh_avatar/Atinux 2x' } }, - { id: 'smarroufin', label: 'smarroufin', href: 'https://github.com/smarroufin', target: '_blank', avatar: { src: 'https://ipx.nuxt.com/s_16x16/gh_avatar/smarroufin', srcset: 'https://ipx.nuxt.com/s_32x32/gh_avatar/smarroufin 2x' } } + { id: 'benjamincanac', label: 'benjamincanac', href: 'https://github.com/benjamincanac', target: '_blank', avatar: { src: 'https://ipx.nuxt.com/s_16x16/gh_avatar/benjamincanac', srcset: 'https://ipx.nuxt.com/s_32x32/gh_avatar/benjamincanac 2x', loading: 'lazy' } }, + { id: 'Atinux', label: 'Atinux', href: 'https://github.com/Atinux', target: '_blank', avatar: { src: 'https://ipx.nuxt.com/s_16x16/gh_avatar/Atinux', srcset: 'https://ipx.nuxt.com/s_32x32/gh_avatar/Atinux 2x', loading: 'lazy' } }, + { id: 'smarroufin', label: 'smarroufin', href: 'https://github.com/smarroufin', target: '_blank', avatar: { src: 'https://ipx.nuxt.com/s_16x16/gh_avatar/smarroufin', srcset: 'https://ipx.nuxt.com/s_32x32/gh_avatar/smarroufin 2x', loading: 'lazy' } } ] const actions = [ diff --git a/docs/components/content/examples/VerticalNavigationExampleAvatarSlot.vue b/docs/components/content/examples/VerticalNavigationExampleAvatarSlot.vue index 9c92c624..32f4585e 100644 --- a/docs/components/content/examples/VerticalNavigationExampleAvatarSlot.vue +++ b/docs/components/content/examples/VerticalNavigationExampleAvatarSlot.vue @@ -38,6 +38,7 @@ const { ui } = useAppConfig() v-if="link.avatar" v-bind="{ size: ui.verticalNavigation.avatar.size, ...link.avatar }" :class="[ui.verticalNavigation.avatar.base]" + loading="lazy" /> diff --git a/docs/components/home/HomeDemo.vue b/docs/components/home/HomeDemo.vue index 137232bc..1e1a67ff 100644 --- a/docs/components/home/HomeDemo.vue +++ b/docs/components/home/HomeDemo.vue @@ -55,6 +55,7 @@ onMounted(() => { alt="benjamincanac" width="40" height="40" + loading="lazy" /> { alt="Atinux" width="40" height="40" + loading="lazy" /> { alt="smarroufin" width="40" height="40" + loading="lazy" /> diff --git a/docs/pages/index.vue b/docs/pages/index.vue index e615bfdf..380456d0 100644 --- a/docs/pages/index.vue +++ b/docs/pages/index.vue @@ -1,3 +1,4 @@ +