Components

Display a block that separates content areas horizontally in your email.

Usage

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

<script setup>
import { ERow, EText } from 'vue-email'
</script>

<template>
  <ERow>
    <EText>My simple text</EText>
  </ERow>
</template>