Initial commit

This commit is contained in:
Jana Schmitz
2025-03-30 01:46:24 +01:00
commit 9eedd4aab8
19 changed files with 257 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<script setup lang="ts">
const card = defineModel<{
title: string
color: string
name: string
}>()
</script>
<template>
<div class="flex flex-col border-2 border-gray-200 card mx-auto">
<h2>{{ card.title }}</h2>
<p>{{ card.name }}</p>
</div>
</template>
<style scoped></style>