You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when using vue-class-component i got some overload issues, but why?
I already tried this workaround: (new Component()).$options
but doesn't work either...
No overload matches this call.
Overload 1 of 3, '(tag: string, componentDefinition: ComponentOptions<Vue, DefaultData, DefaultMethods, DefaultComputed, PropsDefinition<Record<string, any>>, Record<...>>, options?: options | undefined): void', gave the following error.
Value of type 'typeof CookieConsent' has no properties in common with type 'ComponentOptions<Vue, DefaultData, DefaultMethods, DefaultComputed, PropsDefinition<Record<string, any>>, Record<...>>'. Did you mean to call it?
Overload 2 of 3, '(tag: string, singleFileComponent: VueConstructor, options?: options | undefined): void', gave the following error.
Argument of type 'typeof CookieConsent' is not assignable to parameter of type 'VueConstructor'.
Type 'typeof CookieConsent' is missing the following properties from type 'VueConstructor': customElement, http
Overload 3 of 3, '(tag: string, asyncComponentDefinition: () => Promise<ComponentOptions<Vue, DefaultData, DefaultMethods, DefaultComputed, PropsDefinition<Record<string, any>>, Record<...>>>, options?: options | undefined): void', gave the following error.
Argument of type 'typeof CookieConsent' is not assignable to parameter of type '() => Promise<ComponentOptions<Vue, DefaultData, DefaultMethods, DefaultComputed, PropsDefinition<Record<string, any>>, Record<...>>>'.
Type 'typeof CookieConsent' provides no match for the signature '(): Promise<ComponentOptions<Vue, DefaultData, DefaultMethods, DefaultComputed, PropsDefinition<Record<string, any>>, Record<...>>>'
The text was updated successfully, but these errors were encountered:
Hi,
when using vue-class-component i got some overload issues, but why?
I already tried this workaround: (new Component()).$options
but doesn't work either...
The text was updated successfully, but these errors were encountered: