16 lines
231 B
Vue
16 lines
231 B
Vue
<template>
|
|
<div>
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { getDarkMode } from '../../utils/localStorage'
|
|
|
|
export default {
|
|
setup(props, context) {
|
|
context.root.$vuetify.theme.dark = getDarkMode()
|
|
}
|
|
}
|
|
</script>
|