Transition-group tag

<svg id="tangram" v-press="press" v-panstart="panstart" v-panmove="panmove" v-panend="panend" class="tangram-svg" version="1.1" xmlns="http://www.w3.org/2000/svg">
        <transition-group enter-active-class="animated bounceInRight" tag="">
          <polygon :class="["tangram animated", signList.length ? signList[polygon.index].signStatus === "1" ? "zoomIn" : "" : ""]"
            v-show="signList.length ? signList[polygon.index].signStatus === "1" : false"
            v-for="(polygon, index) in polygonData"
            :key="index" :index="polygon.index" :order="index"
            :points="polygon.points"
            :style="polygon.style"
          />
        </transition-group>
    </svg>

I want to animate the elements in svg
. However, after applying transition-group,
will generate a tag on the outside so that svg cannot be rendered. Is there any way to prevent transition-group from generating tags?

Apr.01,2021

remove the tag attribute first, and then remove the enter-active-class attribute

.
Menu