add DragListHeading for cat contents
This commit is contained in:
22
cateditor/src/components/DragListHeading.vue
Normal file
22
cateditor/src/components/DragListHeading.vue
Normal 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>
|
||||
Reference in New Issue
Block a user