Components

Section

Display a section that can be formatted using columns.

Usage

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

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

<template>
  <ESection>
    <EText>Hello world</EText>
  </ESection>
</template>