wikijs-fork/client/components/common/v-card-chin.vue

15 lines
226 B
Vue
Raw Normal View History

2018-06-10 00:11:00 +00: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>