wiki/client/components/common/v-card-chin.vue

15 lines
226 B
Vue
Raw Normal View History

2018-06-09 19:11:00 -05:00
<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>