### Vue version 3.5.3 ### Link to minimal reproduction https://play.vuejs.org/#eNqtU01vm0AQ/SubvWBLBmTcXlxiqbGsKpX6obS9IVUIxjbJsoN2F9uVxX/vfmAgjuNccmNm3pt9b3l7pJ+rKtjVQOc0lpkoKrVIeFFWKBQ5khzWBYdlLRWWKwYlcEUashZYEk+TvE8ddollNV1COwtCWwcZmN1nsOgMFg1gCc+Qy3Ydub0kYNQeNSFHuU1z3D8gqjlZp0xCM9Y7+g3RlQ1axasb9I4hXgZuycgr//mZOd2bOIX2uKvQqIVGBhqH3RXrQkFZsVSBrgiJb3yf3P35MidqW0iSI0juKbJH8UR830FOp9uqr6O21p282C3uNflEvYlD02rx4TNCV5p9cThQQydUSX2L62ITPErkOhtHw0iogRcMxI9KFfqWEzondmJmKWO4/2p7StQwOfWzLWRPF/qP8mB6Cf0pQILYQUK7mUrFBpQbr359h4P+7oYl5jXT6CvDB5DIaqPRwe5qnmvZA5xVe29DWfDNb7k6KODyZMoINcjG4hOq02l+4mvWe7mz4IPlJbzRtzhMd//AiARVV8Nnhvwb1lxBfv64XJiRQcBwM/Jcpi3dG5tpRxyNxuR24RRdoJQO5ZkQNpZ5LYqDyEiGioRtXlz/PCrDl/5eJqdvmnzpctq7dCbfz+LfHQiTDW1vFnwMZrT5D2pywKI= ### Steps to reproduce 1. Create and define two custom components with `{shadowRoot: false}` and <slot /> and `onMounted` 2. Use one component inside each other: ``` <my-comp1> <my-comp2> <div>I'm not shown</div> </my-comp2> </my-comp1> ``` ### What is expected? setup script and onMounted callback is called for components in hierarchical order: 1. `my-comp1` 2. `my-comp2` `<div>I'm not shown</div>` visible in dom. When `shadowRoot` is set to `true` setup and onMounted callback are called in the correct order. ### What is actually happening? setup script and onMounted callback is called for components in following order: 1. `my-comp2` 2. `my-comp1` `<div>I'm not shown</div>` not visible in dom. This deviates from standard lifecycle of vue components. ### System Info _No response_ ### Any additional comments? _No response_
Vue version
3.5.3
Link to minimal reproduction
https://play.vuejs.org/#eNqtU01vm0AQ/SubvWBLBmTcXlxiqbGsKpX6obS9IVUIxjbJsoN2F9uVxX/vfmAgjuNccmNm3pt9b3l7pJ+rKtjVQOc0lpkoKrVIeFFWKBQ5khzWBYdlLRWWKwYlcEUashZYEk+TvE8ddollNV1COwtCWwcZmN1nsOgMFg1gCc+Qy3Ydub0kYNQeNSFHuU1z3D8gqjlZp0xCM9Y7+g3RlQ1axasb9I4hXgZuycgr//mZOd2bOIX2uKvQqIVGBhqH3RXrQkFZsVSBrgiJb3yf3P35MidqW0iSI0juKbJH8UR830FOp9uqr6O21p282C3uNflEvYlD02rx4TNCV5p9cThQQydUSX2L62ITPErkOhtHw0iogRcMxI9KFfqWEzondmJmKWO4/2p7StQwOfWzLWRPF/qP8mB6Cf0pQILYQUK7mUrFBpQbr359h4P+7oYl5jXT6CvDB5DIaqPRwe5qnmvZA5xVe29DWfDNb7k6KODyZMoINcjG4hOq02l+4mvWe7mz4IPlJbzRtzhMd//AiARVV8Nnhvwb1lxBfv64XJiRQcBwM/Jcpi3dG5tpRxyNxuR24RRdoJQO5ZkQNpZ5LYqDyEiGioRtXlz/PCrDl/5eJqdvmnzpctq7dCbfz+LfHQiTDW1vFnwMZrT5D2pywKI=
Steps to reproduce
{shadowRoot: false}and andonMountedWhat is expected?
setup script and onMounted callback is called for components in hierarchical order:
my-comp1my-comp2<div>I'm not shown</div>visible in dom.When
shadowRootis set totruesetup and onMounted callback are called in the correct order.What is actually happening?
setup script and onMounted callback is called for components in following order:
my-comp2my-comp1<div>I'm not shown</div>not visible in dom.This deviates from standard lifecycle of vue components.
System Info
No response
Any additional comments?
No response