Here's how I've defined my props:
myHouse = {
kitchen:{
sink: ''
}
}
I attempted to set the default props like this, but it didn't work as expected.
props: {
house: {
type: Object,
default: () => {
kitchen : {
sink: ''
}
}
}
},
Any guidance on correctly setting default props for an object like this?