Javascript – How to get specific nested child component from parent component slot in render function?
I am conditionally rendering a child component using render function. Here is an example of the parent component with the child component: <Parent :index="1"> <Child> ... </Child> <Child> ... </Child> <Child> ... </Child> </Parent> in the render function of Parent…