Components
Text
A block of text separated by blank spaces.
Install
Install component from your command line.
pnpm add @vue-email/components
# or get the individual package
pnpm add @vue-email/text
Getting started
Add the component to your email template. Include styles where needed.
<script setup lang="ts">
import { Text } from '@vue-email/components'
</script>
<template>
<Text>Lorem ipsum</Text>
</template>