Views: 1856
Last Modified: 27.04.2022
  • Transition classes

    Transition class v-enter is renamed to v-enter-from and v-leave – to v-leave-from.

    Before:

    .v-enter {
        opacity: 0;
    }
    .v-leave {
        opacity: 1;
    }
    

    Now:

    .v-enter-from {
        opacity: 0;
    }
    .v-leave-from {
        opacity: 1;
    }
    

    Learn more on this change in the migration guide.

  • Transitions in root element

    Vue 3 handles transitions at the root element in a different format. You can find details in these articles:





Courses developed by Bitrix24