Closed
Description
I found VTU use this code to make reactive of props when mount
:
const props = reactive({
...options?.attrs,
...options?.props,
ref: MOUNT_COMPONENT_REF
})
but if I have const someRef = ref({})
and pass it to mount
:
mount(App, {
props: {
someRef: someRef
}
})
it will break the Ref
structure