feat: v-card-info

This commit is contained in:
NGPixel
2020-05-10 18:29:24 -04:00
parent 134f057bb8
commit 85a5af6f06
6 changed files with 72 additions and 15 deletions

View File

@@ -1,14 +1,10 @@
<template lang='pug'>
div
v-divider.my-0
v-card-actions(:class='dark ? "grey darken-4-l5" : "grey lighten-4"')
v-card-actions(:class='$vuetify.theme.dark ? "grey darken-4-l5" : "grey lighten-4"')
slot
</template>
<script>
export default {
computed: {
dark() { return this.$vuetify.theme.dark }
}
}
export default { }
</script>