Skip to content

Commit 4397528

Browse files
committed
fix(portal): fix portal placeholder text
1 parent d52ffaa commit 4397528

File tree

1 file changed

+4
-4
lines changed
  • packages/runtime-core/src/components

1 file changed

+4
-4
lines changed

packages/runtime-core/src/components/Portal.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,14 @@ export const PortalImpl = {
2727
pc: patchChildren,
2828
pbc: patchBlockChildren,
2929
m: move,
30-
c: insertComment,
31-
o: { querySelector, setElementText }
30+
o: { insert, querySelector, setElementText, createComment }
3231
}: RendererInternals
3332
) {
3433
const targetSelector = n2.props && n2.props.target
3534
const { patchFlag, shapeFlag, children } = n2
3635
if (n1 == null) {
36+
// insert an empty node as the placeholder for the portal
37+
insert((n2.el = createComment(`portal`)), container, anchor)
3738
if (__DEV__ && isString(targetSelector) && !querySelector) {
3839
warn(
3940
`Current renderer does not support string target for Portals. ` +
@@ -61,6 +62,7 @@ export const PortalImpl = {
6162
warn('Invalid Portal target on mount:', target, `(${typeof target})`)
6263
}
6364
} else {
65+
n2.el = n1.el
6466
// update content
6567
const target = (n2.target = n1.target)!
6668
if (patchFlag === PatchFlags.TEXT) {
@@ -106,8 +108,6 @@ export const PortalImpl = {
106108
}
107109
}
108110
}
109-
// insert an empty node as the placeholder for the portal
110-
insertComment(n1, n2, container, anchor)
111111
}
112112
}
113113

0 commit comments

Comments
 (0)