Skip to content
Snippets Groups Projects

Resolve "Add dashboard"

Merged Daniel Göbel requested to merge feature/159-add-dashboard into main
13 files
+ 672
101
Compare changes
  • Side-by-side
  • Inline
Files
13
+ 24
0
<script setup lang="ts">
import { useSlots } from "vue";
const slots = useSlots();
</script>
<template>
<div class="card">
<div class="card-body">
<h5 class="card-title">
<slot name="title" />
</h5>
<h6 v-if="slots.subtitle" class="card-subtitle mb-2 text-body-secondary">
<slot name="subtitle" />
</h6>
<div class="card-text">
<slot name="body" />
</div>
<slot name="footer" />
</div>
</div>
</template>
<style scoped></style>
Loading