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

.
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3ad07-2b78e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3ad07-2b78e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?