--- title: "" description: "Nuxt provides a component to handle automatic image optimization." links: - label: Source icon: i-simple-icons-github to: https://github.com/nuxt/image/blob/main/src/runtime/components/NuxtPicture.vue size: xs --- `` is a drop-in replacement for the native `` tag. Usage of `` is almost identical to [``](/docs/api/components/nuxt-img) but it also allows serving modern formats like `webp` when possible. Learn more about the [`` tag on MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture). ## Setup In order to use `` you should install and enable the Nuxt Image module: ```bash [Terminal] npx nuxi@latest module add image ``` ::read-more{to="https://image.nuxt.com/usage/nuxt-picture" target="_blank"} Read more about the `` component. ::