mirror of
https://gitee.com/JJ_JJ-JJ/tianlang-novel
synced 2026-07-21 10:34:44 +08:00
21 lines
387 B
Vue
21 lines
387 B
Vue
<script setup lang="ts">
|
|
</script>
|
|
|
|
<template>
|
|
<div class="heart">
|
|
<router-view v-slot="{ Component }">
|
|
<transition>
|
|
<keep-alive>
|
|
<div><component :is="Component" /></div>
|
|
</keep-alive>
|
|
</transition>
|
|
</router-view>
|
|
<!-- <keep-alive>
|
|
<router-view />
|
|
</keep-alive> -->
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|