summaryrefslogtreecommitdiff
path: root/layouts/default.vue
blob: 35c816b23fa0c63ade7f1634c4a2721fd289c28b (plain)
1
2
3
4
5
6
7
8
<template>
  <div :class="$colorMode.preference == 'light' ? 'light' : 'dark'">
    <VHeader />
    <main>
      <Nuxt />
    </main>
  </div>
</template>