mirror of
https://github.com/34892002/edgeKey.git
synced 2026-09-10 02:11:58 +08:00
23 lines
377 B
Vue
23 lines
377 B
Vue
<template>
|
|
<div id="page-container">
|
|
<div id="page-content" class="p-5 pb-12 min-h-screen">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
/* Page Transition Animation */
|
|
body.page-transition #page-content {
|
|
opacity: 0;
|
|
}
|
|
</style>
|
|
|
|
<style scoped>
|
|
/* Page Transition Animation */
|
|
#page-content {
|
|
opacity: 1;
|
|
transition: opacity 0.3s ease-in-out;
|
|
}
|
|
</style>
|