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

15 lines
248 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 darken-4-l5" : "grey lighten-4"')
2018-06-10 00:11:00 +00:00
slot
</template>
<script>
export default {
computed: {
2019-08-05 03:53:21 +00:00
dark() { return this.$vuetify.theme.dark }
2018-06-10 00:11:00 +00:00
}
}
</script>