Initial commit

This commit is contained in:
René Preuß
2022-10-30 14:15:45 +01:00
commit 473c69869d
18 changed files with 515 additions and 0 deletions

17
components/CardHeader.vue Normal file
View File

@@ -0,0 +1,17 @@
<template>
<div class="py-4 px-8 border-b dark:border-base-800 rounded-t">
<div class="text-xl font-medium">
<slot/>
</div>
</div>
</template>
<script>
export default {
name: "CardHeader"
}
</script>
<style scoped>
</style>