Skip to content
On this page

Image

Display an image in your email.

Usage

vue
<template>
  <e-img src="circle.png" alt="circle" width="300" height="300" />
</template>

<script setup>
import { EImg } from 'vue-email';
</script>
NametypeDescription
altstringAlternate description for an image
srcstringThe path to the image
widthstringThe width of an image in pixels
heightstringThe height of an image in pixels

Released under the MIT License.