You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
aliased Fragments and KeepAlive's children should not be transformed into slots.
import{FragmentasFragmentA}from'vue'constRoot=<FragmentA>root</FragmentA>// will be coverted toconstRoot=_createVNode(_FragmentA,null,{default: ()=>[_createTextVNode("root2")]});
import{FragmentasFragmentA}from'vue'constRoot=<FragmentA>root</FragmentA>// should be converted to arrayconstRoot=_createVNode(_FragmentA,null,[_createTextVNode("root2")]);