We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb688c3 commit 74395adCopy full SHA for 74395ad
packages/runtime-core/src/componentPublicInstance.ts
@@ -219,7 +219,9 @@ export type ComponentPublicInstance<
219
$: ComponentInternalInstance
220
$data: D
221
$props: MakeDefaultsOptional extends true
222
- ? Partial<Defaults> & Omit<Prettify<P> & PublicProps, keyof Defaults> & AttrsProps
+ ? Partial<Defaults> &
223
+ Omit<Prettify<P> & PublicProps, keyof Defaults> &
224
+ AttrsProps
225
: Prettify<P> & PublicProps & AttrsProps
226
$attrs: HasDefinedAttrs<Attrs> extends true
227
? Readonly<AttrsProps & AllowedComponentProps>
0 commit comments