mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
15 lines
226 B
Vue
15 lines
226 B
Vue
|
<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>
|