2021-07-31 22:45:28 +00:00
|
|
|
<template>
|
2021-10-05 04:16:37 +00:00
|
|
|
<v-card color="background" flat class="pb-2">
|
2021-10-04 02:38:45 +00:00
|
|
|
<v-card-title class="headline py-0">
|
|
|
|
<v-icon v-if="icon !== ''" left>
|
|
|
|
{{ icon }}
|
|
|
|
</v-icon>
|
|
|
|
{{ title }}
|
|
|
|
</v-card-title>
|
2021-10-30 23:46:44 +00:00
|
|
|
<v-card-text v-if="$slots.default" class="pt-2">
|
2021-10-09 21:08:23 +00:00
|
|
|
<p class="pb-0 mb-0">
|
|
|
|
<slot />
|
|
|
|
</p>
|
|
|
|
</v-card-text>
|
2021-09-05 04:24:32 +00:00
|
|
|
<v-divider class="my-4"></v-divider>
|
2021-07-31 22:45:28 +00:00
|
|
|
</v-card>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
title: {
|
|
|
|
type: String,
|
2021-08-07 00:28:12 +00:00
|
|
|
default: "Place Holder",
|
|
|
|
},
|
2021-10-04 02:38:45 +00:00
|
|
|
icon: {
|
|
|
|
type: String,
|
|
|
|
default: "",
|
|
|
|
},
|
2021-08-07 00:28:12 +00:00
|
|
|
},
|
|
|
|
};
|
2021-07-31 22:45:28 +00:00
|
|
|
</script>
|