2025-02-24 18:23:33 +08:00
|
|
|
<template>
|
2025-03-01 20:52:06 +08:00
|
|
|
<router-view v-slot="{ Component, route }">
|
|
|
|
<transition :name="route.meta.transition || 'fade-transform'" mode="out-in">
|
|
|
|
<component :is="Component" :key="route.path" />
|
|
|
|
</transition>
|
|
|
|
</router-view>
|
2025-02-24 18:23:33 +08:00
|
|
|
</template>
|
|
|
|
|
2025-03-13 23:01:44 +08:00
|
|
|
<style lang="scss">
|
2025-02-25 23:14:50 +08:00
|
|
|
#app {
|
|
|
|
width: 100%;
|
2025-03-01 20:52:06 +08:00
|
|
|
height: 1080px;
|
2025-03-13 23:01:44 +08:00
|
|
|
//height: 100%;
|
2025-02-24 18:23:33 +08:00
|
|
|
}
|
|
|
|
</style>
|