mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-05 12:07:22 -04:00
12 lines
192 B
Vue
12 lines
192 B
Vue
<script setup lang="ts">
|
|
import useDark from '~/composables/useDark.ts';
|
|
|
|
useDark();
|
|
</script>
|
|
|
|
<template>
|
|
<main class="container pt-5 pb-3">
|
|
<slot></slot>
|
|
</main>
|
|
</template>
|