Components
Head
Contains head components, related to the document such as style and meta elements.
Install
Install component from your command line.
pnpm add @vue-email/components
# or get the individual package
pnpm add @vue-email/head
Getting started
Add the component to your email template. Include styles where needed.
<script setup lang="ts">
import { Head } from '@vue-email/components'
</script>
<template>
<Head>
<title>My email title</title>
</Head>
</template>