父组件 - 实例代码(TSX)- 方式1 import Child from './Child.vue' export const F = defineComponent({ name: 'F', setup(props, ctx) { return () => { return<Child>{{ header: () =>header slot content, default: () =>default children content, }}</Child>}; }, }); 父组件 - 实例...