Components
Hr
Display a divider that separates content areas in your email.
Install
Install component from your command line.
pnpm add @vue-email/components
# or get the individual package
pnpm add @vue-email/hr
Getting started
Add the component to your email template. Include styles where needed.
<script setup lang="ts">
import { Hr } from '@vue-email/components'
</script>
<template>
<Hr />
</template>