Open
Description
Version
1.0.0-beta.33
Reproduction link
https://codesandbox.io/s/vue-template-yy6q9
Steps to reproduce
- Create a component that uses a functional component with a property of type object
- Use said functional component in template, and pass the property as an object
- (3.A) Try and use the .props() method - can't use it since the child component is a functional component
- (3.B) Try and use the .attributes() method. It will return the object as string "[object Object]", so you can't test the actual value of it.
What is expected?
To have a way to test the value passed as an object property to a child functional component
What is actually happening?
There is no way to test the value passed as an object property to a child functional component