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")]);
🐛 Bug description
aliased Fragments and KeepAlive's children should not be transformed into slots.
📝 Steps to reproduce
REPL
Reproduction Link (required):
🏞 Desired result
🚑 Other information
vue-macros/vue-macros#954
The text was updated successfully, but these errors were encountered: