You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
Currently this syntax is not supported and some modifications are needed. Since there's no standard for Vue JSX syntax, you might see various types of syntax. At the moment I'm not sure whether I have to support such syntax🥹
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
The text was updated successfully, but these errors were encountered: