App.vue 349 B

12345678910111213141516
  1. <script setup lang="ts">
  2. import { motion } from "motion-v";
  3. </script>
  4. <template>
  5. <motion.div
  6. class="overflow-x-hidden"
  7. :key="$route.fullPath"
  8. :initial="{ opacity: 0 }"
  9. :animate="{ opacity: 1, transition: { duration: 0.8, ease: 'easeOut' } }"
  10. >
  11. <router-view></router-view>
  12. </motion.div>
  13. </template>
  14. <style scoped></style>