index.vue 358 B

12345678910111213141516
  1. <script setup lang="ts">
  2. import HeadBlock from '@/layout/component/HeadBlock.vue'
  3. import FooterBlock from '@/layout/component/FooterBlock.vue'
  4. </script>
  5. <template>
  6. <head-block />
  7. <transition enter-active-class="animate__animated animate__fadeIn" mode="out-in">
  8. <RouterView />
  9. </transition>
  10. <FooterBlock />
  11. </template>
  12. <style scoped>
  13. </style>