How to Access the Original Component Tag from AsyncComponentWrapper in Vue 3 Slots?
I’m working with Vue 3 and trying to dynamically render components within slots based on their tags. Initially, I was able to identify components directly using slots.default().find(slot => slot.type === ‘<tag-name>’), which worked perfectly when components were not loaded asynchronously.