Вложенная группа перехода в vue не работает
Transition group inside transition group is not working.
<transition-group name="slide">
<section-tree v-for="(section,index) in form.sections" :key="section.random"
:index = "index"
:section = "section"
:sections="form.sections"
@removeSection="removeSection"
@selectedSectionAndLesson="selectedSectionAndLesson"
>
</section-tree>
</transition-group>
Компонент "Дерево сечения":
<transition-group name="slide">
<lesson-tree v-for="(lesson,ind) in section.lessons" :key="lesson.random"
:section-index="index"
:index="ind" :lesson="lesson" :section="section" :sections="sections"
@selectedLesson="selectedLesson"
@removeLesson="removeLesson"
>
</lesson-tree>
</transition-group>