You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
242 B

  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.dark }
  11. }
  12. }
  13. </script>