18 lines
355 B
Vue
18 lines
355 B
Vue
<template>
|
|
<v-card class="subheading font-weight-bold ma-0 pa-0 white--text" color="keen_dark_grey">
|
|
<v-card-title class="ma-0 pa-0 pl-1">
|
|
<span class="pa-2">{{ title }}</span>
|
|
<v-spacer></v-spacer>
|
|
<slot></slot>
|
|
</v-card-title>
|
|
</v-card>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
title: String,
|
|
},
|
|
}
|
|
</script>
|