When writing a vue-music project, the mini-player, deleting any song from the list will not have a transitional effect.

Mini player when writing vue-music project, deleting any song from the list has no transitional effect.
html section

clipboard.png
the key id of li has been added. You can delete a song, but it still has no transition effect. The effect is very stiff.

css:

.list-enter-active, .list-leave-active {

transition: all 0.1s linear;

}
.list-enter, .list-leave-to {

height: 0;

}

Mar.09,2021

the height you set is 0, but how much is the height before the transition? in fact, auto, can solve

perfectly by using max-height .
Menu