父级: import { defineComponent, h, withCtx, getCurrentInstance } from 'vue' import Comp from './Comp.vue' export default defineComponent({ components: { Comp }, setup() { const ins = getCurrentInstance() return { r: () => h('span', { class: 'span' }, '哈哈') // r: withCtx(() => h('span', { class: 'span' }, '哈哈'), ins) } }, }) .span { color: blue; } 子组件: import { defineComponent, h } from 'vue' export default defineComponent({ name: 'Comp', props: { r: Function }, setup(props) { return () => h('div', { class: 'comp' }, props.r()) }, }) .comp { color: red }   如果使用`withCtx(() => h('span', { class: 'span' }, '哈哈'), ins)`是可以让`span`的`scopeId`和父级一致,但是这样必须在每个使用了子组件的父级里写一遍,太麻烦还容易漏,官方文档根本没写这东西 所以有没有一种方式,能通过修改子组件,父级不需要传其他乱七八糟的比如`instance`之类的给子组件,就能达到说子组件接收的`render`函数始终使用传入者的`scopeId`?