feat: admin dark mode
This commit is contained in:
14
client/components/common/v-card-chin.vue
Normal file
14
client/components/common/v-card-chin.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<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>
|
Reference in New Issue
Block a user