Components
Code Inline
Display a predictable inline code HTML element that works on all email clients.
Install
Install component from your command line.
pnpm add @vue-email/components
# or get the individual package
pnpm add @vue-email/code-inline
Getting started
Add the component to your email template. Include styles where needed.
<script setup lang="ts">
import { CodeInline } from '@vue-email/components'
</script>
<template>
<CodeInline>@vue-email/code-inline</CodeInline>
</template>