Hi. I am using this tools to test my vue component.
I has a componentA, and it has a child componentB
componetA is written as
export default defineComponent({ setup(props): { return () => (<ComponentB { ...{ props: { ...props, ...otherProps } } > </ComponentB>) } })
But it seems ComponentB do not get the props when render