Skip to content
On this page

Head

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

Usage

vue
<template>
  <e-head>
    <title>Email title</title>
    <meta name="description" content="Description" />
  </e-head>
</template>

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

Released under the MIT License.