15 lines
226 B
Vue
15 lines
226 B
Vue
<template lang='pug'>
|
|
div
|
|
v-divider.my-0
|
|
v-card-actions(:class='dark ? "" : "grey lighten-4"')
|
|
slot
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
computed: {
|
|
dark() { return this.$vuetify.dark }
|
|
}
|
|
}
|
|
</script>
|