File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
packages/runtime-core/src Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -313,6 +313,7 @@ export type ComponentPublicInstance<
313
313
$slots : UnwrapSlotsType < S >
314
314
$root : ComponentPublicInstance | null
315
315
$parent : ComponentPublicInstance | null
316
+ $host : Element | null
316
317
$emit : EmitFn < E >
317
318
$el : any
318
319
$options : Options & MergedComponentOptionsOverride
@@ -371,6 +372,7 @@ export const publicPropertiesMap: PublicPropertiesMap =
371
372
$refs : i => ( __DEV__ ? shallowReadonly ( i . refs ) : i . refs ) ,
372
373
$parent : i => getPublicInstance ( i . parent ) ,
373
374
$root : i => getPublicInstance ( i . root ) ,
375
+ $host : i => i . ce ,
374
376
$emit : i => i . emit ,
375
377
$options : i => ( __FEATURE_OPTIONS_API__ ? resolveMergedOptions ( i ) : i . type ) ,
376
378
$forceUpdate : i =>
You can’t perform that action at this time.
0 commit comments