Add Card component

This commit is contained in:
Jan Bader 2022-02-04 20:44:08 +00:00
parent d9aed7603e
commit 0305aa86c1

View File

@ -0,0 +1,13 @@
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({
})
</script>
<template>
<div class="flex flex-row items-center bg-gray-300 h-32 rounded-lg">
<slot></slot>
</div>
</template>