mirror of
https://github.com/versia-pub/frontend.git
synced 2026-03-13 03:29:16 +01:00
refactor: 🎨 Move Lysand-FE into its own repository
This commit is contained in:
commit
f6989707f4
26 changed files with 1226 additions and 0 deletions
16
emails/welcome.vue
Normal file
16
emails/welcome.vue
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<script setup lang="ts">
|
||||
import { EButton, ETailwind } from "vue-email";
|
||||
import tailwindConfig from "~/tailwind.config";
|
||||
|
||||
defineProps<{
|
||||
name: string;
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<ETailwind :config="tailwindConfig">
|
||||
<EButton href="https://example.com" class="bg-primary px-3 py-2 font-medium leading-4 text-white">
|
||||
Click me
|
||||
</EButton>
|
||||
</ETailwind>
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue