Components

Container

A layout component that centers all the email content.

Usage

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

<script setup>
import { EButton, EContainer } from 'vue-email'
</script>

<template>
  <EContainer>
    <EButton href="https://vuejs.org" style="color: #61dafb">
      Click
    </EButton>
  </EContainer>
</template>