mirror of
https://github.com/haexhub/haex-hub.git
synced 2025-12-18 23:10:51 +01:00
28 lines
419 B
Vue
28 lines
419 B
Vue
<template>
|
|
<div>
|
|
<NuxtLayout :data-theme="currentTheme">
|
|
<NuxtPage />
|
|
<NuxtSnackbar />
|
|
</NuxtLayout>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const { currentTheme } = storeToRefs(useUiStore());
|
|
</script>
|
|
|
|
<style>
|
|
.fade-enter-active {
|
|
transition: all 1s ease-out;
|
|
}
|
|
|
|
.fade-leave-active {
|
|
transition: all 1s ease-out reverse;
|
|
}
|
|
|
|
.fade-enter-from,
|
|
.fade-leave-to {
|
|
opacity: 0;
|
|
}
|
|
</style>
|