blob: 6a2f26f856040094f17a9112538f2ba10ea5e230 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<template>
<div
:class="
$colorMode.preference == 'light' || $colorMode.preference == 'system'
? 'light'
: 'dark'
"
>
<VHeader />
<main>
<Nuxt />
</main>
</div>
</template>
|