This commit is contained in:
Viet An
2026-06-15 09:47:39 +07:00
parent 2932730fc3
commit a9c37cfff5
12 changed files with 319 additions and 123 deletions

View File

@@ -1,6 +1,8 @@
<template>
<AppLoading v-if="!$store.ready" />
<ClientOnly v-else>
<Transition>
<AppLoading v-if="!$store.ready" />
</Transition>
<ClientOnly v-if="$store.ready">
<TopMenu @changeTab="changeTab" />
<main>
<div
@@ -116,4 +118,14 @@ main {
padding: 1rem;
}
}
.v-enter-active,
.v-leave-active {
transition: all 0.3s ease;
}
.v-enter-from,
.v-leave-to {
opacity: 0;
}
</style>