add DragListHeading for cat contents

This commit is contained in:
Seth Ladygo
2019-05-14 16:07:47 -07:00
parent 9d18b47aee
commit 7fa2098c73
2 changed files with 32 additions and 14 deletions

View File

@ -0,0 +1,22 @@
<template>
<v-card class="subheading font-weight-bold ma-0 pl-2" color="grey lighten-2">
<v-card-title class="">
{{ title }}
<v-spacer></v-spacer>
<!-- <v-btn icon>
<v-icon class="ma-0 pa-0">add</v-icon>
</v-btn>
-->
</v-card-title>
</v-card>
</template>
<script>
export default {
data: () => ({
}),
props: {
title: String,
},
}
</script>