|
@@ -206,11 +206,9 @@ export type ComponentPublicInstance<
|
|
|
> = {
|
|
> = {
|
|
|
$: ComponentInternalInstance
|
|
$: ComponentInternalInstance
|
|
|
$data: D
|
|
$data: D
|
|
|
- $props: Prettify<
|
|
|
|
|
- MakeDefaultsOptional extends true
|
|
|
|
|
- ? Partial<Defaults> & Omit<P & PublicProps, keyof Defaults>
|
|
|
|
|
- : P & PublicProps
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ $props: MakeDefaultsOptional extends true
|
|
|
|
|
+ ? Partial<Defaults> & Omit<Prettify<P> & PublicProps, keyof Defaults>
|
|
|
|
|
+ : Prettify<P> & PublicProps
|
|
|
$attrs: Data
|
|
$attrs: Data
|
|
|
$refs: Data
|
|
$refs: Data
|
|
|
$slots: UnwrapSlotsType<S>
|
|
$slots: UnwrapSlotsType<S>
|