We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Increasing type safety. For now my IDE says that the type of export type ComponentProps = ComponentPublicInstance['$props']; is just empty object {}
export type ComponentProps = ComponentPublicInstance['$props'];
{}
Just export real props interface vuejs/core#8083
Due to new features of vue3.3 we now able to reuse component interfaces for more convenient usage of wrapperings components
The text was updated successfully, but these errors were encountered:
The props has type safety in vue-final-modal 4
Sorry, something went wrong.
hunterliu1003
No branches or pull requests
Is your feature request related to a problem? Please describe.
Increasing type safety. For now my IDE says that the type of
export type ComponentProps = ComponentPublicInstance['$props'];
is just empty object{}
Describe the solution you'd like
Just export real props interface vuejs/core#8083
Additional context
Due to new features of vue3.3 we now able to reuse component interfaces for more convenient usage of wrapperings components
The text was updated successfully, but these errors were encountered: