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>
<e-section>
<e-text>Hello world</e-text>
</e-section>
</template>