v-card-chin.vue 248 B

1234567891011121314
  1. <template lang='pug'>
  2. div
  3. v-divider.my-0
  4. v-card-actions(:class='dark ? "grey darken-4-l5" : "grey lighten-4"')
  5. slot
  6. </template>
  7. <script>
  8. export default {
  9. computed: {
  10. dark() { return this.$vuetify.theme.dark }
  11. }
  12. }
  13. </script>