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>
<e-head>
<title>Email title</title>
<meta name="description" content="Description" />
</e-head>
</template>