允许这种特性在过渡组或过渡中使用,并将其编译为
<todo-layout-container> </todo-layout-container>
,并编译到todo-layout-container内部。
l0oc07j21#
这太棒了!不再有不必要的 div's 被用于过渡。
div's
dnph8jn42#
另外,添加对传递属性/事件/属性的支持也会很有帮助。例如:
<transition-group tag="todo-layout-container" :props="someValue" @event="someMethod()" class="css-class" > <!-- Which will render a component rather a tag --> </transition-group>
将编译为
<todo-layout-container :props="someValue" @event="someMethod()" class="css-class"> </todo-layout-container>
2条答案
按热度按时间l0oc07j21#
这太棒了!不再有不必要的
div's
被用于过渡。dnph8jn42#
另外,添加对传递属性/事件/属性的支持也会很有帮助。
例如:
将编译为