We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 479f516 commit 38f835dCopy full SHA for 38f835d
src/extends/component.ts
@@ -64,8 +64,8 @@ export class VueComponent<T extends {} = {}> {
64
get $attrs() {
65
return this.$.proxy!.$attrs
66
}
67
- get $slots() {
68
- return this.$.proxy!.$slots
+ get $slots(): Omit<NonNullable<VueComponentProps<T>['v-slots']>, '$stable'> {
+ return this.$.proxy!.$slots as any
69
70
get $options() {
71
return this.$.proxy!.$options
0 commit comments