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