index.vue 635 B

1234567891011121314151617181920212223242526272829
  1. <!--
  2. * @Author: your name
  3. * @Date: 2024-05-17 16:02:11
  4. * @LastEditTime: 2024-06-12 17:47:00
  5. * @LastEditors: bogon
  6. * @Description: In User Settings Edit
  7. * @FilePath: /dasheng/performance-test/src/views/system/index.vue
  8. -->
  9. <template>
  10. <div>
  11. <transition name="slide-fade">
  12. <router-view />
  13. </transition>
  14. </div>
  15. </template>
  16. <script></script>
  17. <style scoped lang="scss">
  18. .slide-fade-enter-active {
  19. transition: all 0.3s ease-out;
  20. }
  21. .slide-fade-leave-active {
  22. transition: all 0.5s cubic-bezier(1, 0.5, 0.6, 1);
  23. }
  24. .slide-fade-enter-from,
  25. .slide-fade-leave-to {
  26. transform: translateX(50px);
  27. opacity: 0;
  28. }
  29. </style>