Initial commit
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user