You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
515 B

<template>
<v-card>
<v-card-title class="grey lighten-2">
{{ title }}
</v-card-title>
<v-container grid-list-sm>
<v-layout wrap>
<v-flex xs12>
<slot name="content" />
</v-flex>
</v-layout>
</v-container>
<v-card-actions>
<v-spacer />
<slot name="actions" />
</v-card-actions>
</v-card>
</template>
<script>
export default {
props: {
title: {
type: String,
default: '',
required: true
}
}
}
</script>