flowko-vue-test
Simple way to build email templates in vue.
Features
Setup
๐ Read the documentation
pnpm add -D flowko-vue-test
npm i -D flowko-vue-test
Basic Usage
๐ Read the documentation
// components/template-email.vue
<template>
<e-html lang="en">
<e-text>Hello, {{ user }}!</e-text>
<e-hr />
<e-button href="vuejs.org">Visit vue</e-button>
</e-html>
</template>
<script setup>
import { EButton, EHr, EHtml, EText } from "flowko-vue-test";
import { ref } from "vue";
const user = ref("Dave");
</script>
You can see the full example here
๐ป Development
- Clone this repository
- Enable Corepack using
corepack enable
- Install dependencies using
pnpm install
Contributors
Repo Activity
๐ Annotations
This project is originally written in react (react-email) by:
License
This project is licensed under MIT