It would be nice to have an interator function to get all the children, wither they are static components or fragment child.
Even better if we can do it in a TypeSafe way, so that it returns VNode<InstanceType<typeof UTab>>[].
<UTabs>
<UTab :name="t('Tab 1')"></UTab>
<UTab v-for="i in 4" :name="t(`Tab ${i}`)">...</UTab>
</UTabs>
It would be nice to have an interator function to get all the children, wither they are static components or fragment child.
Even better if we can do it in a TypeSafe way, so that it returns
VNode<InstanceType<typeof UTab>>[].