9 lines
166 B
Vue
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
<script setup lang="ts">
import { isDark } from '../logic/dark'
</script>
<template>
<slot v-if="isDark" name="dark" />
<slot v-else name="light" />
</template>