improve heading components

This commit is contained in:
Seth Ladygo
2019-05-17 14:29:09 -07:00
parent f7acf26867
commit b8e09b21c5
4 changed files with 36 additions and 15 deletions

View File

@ -0,0 +1,17 @@
<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>