### What problem does this feature solve? https://github.com/vuejs/vue/issues/7178 It seems like this still needs to be implemented, in v3 because currently it passes `slots` as component's prop instead of its children. https://vue-next-template-explorer.netlify.com/#%7B%22src%22%3A%22%3Cchild%20v-bind%3D%5C%22%7B%20slots%3A%20%24slots%20%7D%5C%22%3E%3C%2Fchild%3E%22%2C%22options%22%3A%7B%22mode%22%3A%22module%22%2C%22prefixIdentifiers%22%3Afalse%2C%22hoistStatic%22%3Atrue%2C%22cacheHandlers%22%3Atrue%2C%22scopeId%22%3Anull%7D%7D ### What does the proposed API look like? ```vue <child v-bind="{ slots: $slots }"></child> ``` <!-- generated by vue-issues. DO NOT REMOVE -->