Vue
Optimized image component for Vue.
Install
sh
$ npm add @urami/vue
$ npm add @urami/vue
sh
$ pnpm add @urami/vue
$ pnpm add @urami/vue
sh
$ yarn add @urami/vue
$ yarn add @urami/vue
sh
$ bun add @urami/vue
$ bun add @urami/vue
Usage
vue
<script>
import Image from "@urami/vue";
</script>
<template>
<Image
src="https://demo.rayriffy.com/tom-scott.jpg"
width="801"
height="801"
alt="Tom Scott"
class="rounded-xl shadow-md"
/>
</template>
<script>
import Image from "@urami/vue";
</script>
<template>
<Image
src="https://demo.rayriffy.com/tom-scott.jpg"
width="801"
height="801"
alt="Tom Scott"
class="rounded-xl shadow-md"
/>
</template>
Props
Name | Type | Default | Required | Description |
---|---|---|---|---|
src | string | - | ✅ | Source of the image |
width | number | - | ✅ | Width of the image |
height | number | - | ❌ | Height of the image (Specify this will results in less layout shift) |
quality | number | 75 | ❌ | Quality of the image |
loader | fn | defaultLoader | ❌ | Loader function, please refer to Loader |