Components

Head

Contains head components, related to the document such as style and meta elements.

Usage

Add the component to your email template. Include styles where needed.

<script setup>
import { EHead } from 'vue-email'
</script>

<template>
  <EHead>
    <title>Email title</title>
    <meta name="description" content="Description">
  </EHead>
</template>