@unlazy/nuxt
The Nuxt module provides an auto-imported UnLazyImage component as a drop-in replacement for native <img> and <picture> elements (when using the sources prop).
Installation
Install the @unlazy/nuxt package using your favorite package manager:
pnpm add -D @unlazy/nuxtyarn add -D @unlazy/nuxtnpm install -D @unlazy/nuxtAdd the @unlazy/nuxt module to your Nuxt configuration:
// `nuxt.config.ts`
export default defineNuxtConfig({
modules: ['@unlazy/nuxt']
})Module Options
The @unlazy/nuxt module accepts the following options:
export interface ModuleOptions {
/**
* Whether to generate the blurry placeholder on the server-side if a BlurHash
* or ThumbHash is provided via the `blurhash`, respectively `thumbhash` prop.
*
* @default true
*/
ssr?: boolean
/**
* The size of the longer edge (width or height) of the BlurHash image to be
* decoded, depending on the aspect ratio.
*
* @remarks
* This option is ignored if the a ThumbHash is used.
*
* @default 32
*/
placeholderSize?: number
}Adapt the module options to your needs:
// `nuxt.config.ts`
export default defineNuxtConfig({
modules: ['@unlazy/nuxt'],
// Module options
unlazy: {
ssr: false
}
})WARNING
Disabling server-side rendering of the blurry placeholder image will result in a flash of the original image on the initial page load and largely defeats the purpose of the SSR abilities from Nuxt.
UnLazyImage Component
The UnLazyImage component is globally available in your Nuxt application.
Props
The UnLazyImage component accepts the following props:
| Prop | Type | Default | Description |
|---|---|---|---|
src | String | - | Image source URL to be lazy-loaded. |
srcSet | String | - | Image source set to be lazy-loaded. |
sources | Array | - | Array of source objects for <picture> element. Each object should have type, srcSet, and optional sizes properties. |
autoSizes | Boolean | false | Whether the sizes attribute should be automatically calculated. |
blurhash | String | - | A BlurHash string representing the blurry placeholder image. |
thumbhash | String | - | A ThumbHash string representing the blurry placeholder image. If both are provided, thumbhash takes precedence. |
placeholderSrc | String | - | Optional image source URL for a custom placeholder image. Ignored if a hash is provided. |
placeholderSize | Number | 32 | The size of the longer edge for BlurHash decoding. Ignored for ThumbHash. |
placeholderRatio | Number | - | Aspect ratio (width / height) for BlurHash decoding during SSR. |
lazyLoad | Boolean | true | Whether the image should be lazy-loaded. Set to false to defer loading until changed to true. |
preload | Boolean | false | Whether the image should be preloaded immediately, bypassing lazy loading. |
ssr | Boolean | true | Whether hashes should be decoded on the server. Overrides global module config. |
loading | String | 'lazy' | Loading strategy for the image ('lazy' or 'eager'). |
The component also accepts all standard <img> HTML attributes via Nuxt's attribute inheritance.
Emitted Events
| Event | Payload | Description |
|---|---|---|
loaded | HTMLImageElement | Emitted when the image has been successfully loaded. |
error | Event | Emitted when an error occurs during image loading. |
Server-Side Rendering
The Nuxt module decodes BlurHash and ThumbHash strings on the server during SSR, providing placeholder images before the HTML is sent to the client. This prevents layout shifts and improves perceived performance.
The ssr option (enabled by default) can be overridden per-component or disabled globally in nuxt.config.ts.
Examples
TIP
In every srcSet example, the sizes attribute is automatically calculated given the auto-sizes prop.
Inlined placeholder image
<UnLazyImage
placeholder-src="data:image/svg+xml, ..."
src="/foo/bar.jpg"
/>BlurHash
<UnLazyImage
:blurhash="blurhash"
:blurhash-ratio="2"
src-set="image-320w.jpg 320w, image-640w.jpg 640w"
width="640"
height="320"
/><UnLazyImage
:ssr="false"
:blurhash="blurhash"
src-set="image-320w.jpg 320w, image-640w.jpg 640w"
auto-sizes
width="640"
height="320"
/>ThumbHash
<UnLazyImage
:thumbhash="thumbhash"
src-set="image-320w.jpg 320w, image-640w.jpg 640w"
auto-sizes
width="640"
height="320"
/><UnLazyImage
:ssr="false"
:thumbhash="thumbhash"
src-set="image-320w.jpg 320w, image-640w.jpg 640w"
auto-sizes
width="640"
height="320"
/>Multiple image sources
In this example, we're using the UnLazyImage component with an exampleImgSrc for the default image source, and an array of objects named exampleSources for the sources prop. Each object in the array includes a type and a srcSet property. In addition, the blurhash attribute is set to a predefined BlurHash string, and the autoSizes attribute is set to true, which will enable automatic calculation of the sizes attribute.
<script setup lang="ts">
const exampleImgSrc = '/images/foo.jpg'
const exampleSources = [
{
type: 'image/webp',
srcSet: '/images/foo.webp 1x, /images/foo@2x.webp 2x'
},
{
type: 'image/jpeg',
srcSet: '/images/foo.jpg 1x, /images/foo@2x.jpg 2x'
}
]
</script>
<template>
<UnLazyImage
width="800"
height="600"
:src="exampleImgSrc"
:sources="exampleSources"
blurhash="LEHV6nWB2yk8pyo0adR*.7kCMdnj"
auto-sizes
/>
</template>Preload Image
Useful if the UnLazyImage is part of e.g. a slider, and you want to preload the next image.
<template>
<UnLazyImage
width="640"
height="320"
:blurhash="blurhash"
src-set="image-320w.jpg 320w, image-640w.jpg 640w"
auto-sizes
preload
/>
</template>INFO
When using client-side BlurHash decoding (:ssr="false"), set explicit width and height attributes for optimal performance. Server-side rendering (enabled by default) is less affected by this, but including these attributes is still recommended as a best practice.