mirror of
https://github.com/EasyTier/EasytierGame.git
synced 2025-05-19 10:27:56 +00:00
13 lines
293 B
Vue
13 lines
293 B
Vue
<template>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import useMainStore from "@/stores/index";
|
|
import { initTheme } from "@/composables/theme";
|
|
const mainStore = useMainStore();
|
|
// console.log(mainStore.theme)
|
|
initTheme(mainStore.theme);
|
|
</script>
|