Files
procat2/cateditor/src/components/DragListHeading.vue
2019-05-17 14:29:09 -07:00

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>