20 lines
361 B
Vue
20 lines
361 B
Vue
<template>
|
|
<v-card class="subheading font-weight-bold ma-0 pl-2" color="grey lighten-2">
|
|
<v-card-title class="ma-0 pa-0">
|
|
<span class="pa-2">{{ title }}</span>
|
|
<v-spacer></v-spacer>
|
|
<slot></slot>
|
|
</v-card-title>
|
|
</v-card>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data: () => ({
|
|
}),
|
|
props: {
|
|
title: String,
|
|
},
|
|
}
|
|
</script>
|