1. <template>
    2. <transition>
    3. <slot></slot>
    4. </transition>
    5. </template>
    6. <script>
    7. export default {
    8. }
    9. </script>
    10. <style>
    11. .v-enter-active {
    12. animation: bounce-in .5s;
    13. }
    14. .v-leave-active {
    15. animation: bounce-in .5s reverse;
    16. }
    17. @keyframes bounce-in {
    18. 0% {
    19. opacity: 0;
    20. }
    21. 50% {
    22. opacity: 0.5;
    23. }
    24. 100% {
    25. opacity: 1;
    26. }
    27. }
    28. </style>