We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2de331 commit ce01a2cCopy full SHA for ce01a2c
packages/app-backend-vue3/src/components/el.ts
@@ -50,6 +50,8 @@ export function getInstanceOrVnodeRect (instance) {
50
return addIframePosition(getFragmentRect(instance.subTree), getElWindow(el))
51
} else if (el.nodeType === 1) {
52
return addIframePosition(el.getBoundingClientRect(), getElWindow(el))
53
+ } else if (instance.subTree.component) {
54
+ return getInstanceOrVnodeRect(instance.subTree.component)
55
}
56
57
0 commit comments