File tree 1 file changed +4
-4
lines changed
packages/runtime-core/src/components
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,14 @@ export const PortalImpl = {
27
27
pc : patchChildren ,
28
28
pbc : patchBlockChildren ,
29
29
m : move ,
30
- c : insertComment ,
31
- o : { querySelector, setElementText }
30
+ o : { insert, querySelector, setElementText, createComment }
32
31
} : RendererInternals
33
32
) {
34
33
const targetSelector = n2 . props && n2 . props . target
35
34
const { patchFlag, shapeFlag, children } = n2
36
35
if ( n1 == null ) {
36
+ // insert an empty node as the placeholder for the portal
37
+ insert ( ( n2 . el = createComment ( `portal` ) ) , container , anchor )
37
38
if ( __DEV__ && isString ( targetSelector ) && ! querySelector ) {
38
39
warn (
39
40
`Current renderer does not support string target for Portals. ` +
@@ -61,6 +62,7 @@ export const PortalImpl = {
61
62
warn ( 'Invalid Portal target on mount:' , target , `(${ typeof target } )` )
62
63
}
63
64
} else {
65
+ n2 . el = n1 . el
64
66
// update content
65
67
const target = ( n2 . target = n1 . target ) !
66
68
if ( patchFlag === PatchFlags . TEXT ) {
@@ -106,8 +108,6 @@ export const PortalImpl = {
106
108
}
107
109
}
108
110
}
109
- // insert an empty node as the placeholder for the portal
110
- insertComment ( n1 , n2 , container , anchor )
111
111
}
112
112
}
113
113
You can’t perform that action at this time.
0 commit comments