2023-04-20 12:01:38 +00:00
|
|
|
|
<!-- App -->
|
2023-04-25 15:03:33 +00:00
|
|
|
|
<script setup lang="ts">
|
2023-05-02 18:20:22 +00:00
|
|
|
|
import 'animate.css'
|
2023-04-25 15:03:33 +00:00
|
|
|
|
</script>
|
2023-04-14 13:58:13 +00:00
|
|
|
|
|
|
|
|
|
<template>
|
2023-05-02 18:20:22 +00:00
|
|
|
|
<!-- #default 是 v-slot 的简写,route 就是路由,Component 是一个 v-node -->
|
|
|
|
|
<!-- <router-view #default="{ route, Component }">
|
|
|
|
|
<transition
|
|
|
|
|
:enter-active-class="`animate__animated ${route.meta.transition}`"
|
|
|
|
|
>
|
|
|
|
|
<component :is="Component"></component>
|
|
|
|
|
</transition>
|
|
|
|
|
</router-view> -->
|
2023-05-02 09:44:23 +00:00
|
|
|
|
<RouterView />
|
2023-04-14 13:58:13 +00:00
|
|
|
|
</template>
|
|
|
|
|
|
2023-04-18 08:04:47 +00:00
|
|
|
|
<style scoped></style>
|