该子组件中可以接收一个header模块的插槽内容(1)和默认的插槽内容(2) *如果我们想在一个使用TSX语法编写的父组件中向Child组件填充插槽内容 可以参考一下两种方式: 父组件 - 实例代码(TSX)- 方式1 import Child from './Child.vue' export const F = defineComponent({ name: 'F', setup(props, ctx) { ...