improve heading components
This commit is contained in:
17
cateditor/src/components/DialogHeading.vue
Normal file
17
cateditor/src/components/DialogHeading.vue
Normal 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>
|
||||
Reference in New Issue
Block a user