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
3.2.31
stackblitz.com
Create a component in SFC mode and use defineProps with an extended interface, properties are not working
<script setup lang="ts"> interface Example { description: string } interface Props extends Example {} defineProps<Props>() </script> <template> <p>{{ description }}</p> <!-- the description is undefined --> </template>
That the definition of properties have this support
defineProps with extended interface not working
The text was updated successfully, but these errors were encountered:
Duplicate of #4498
Sorry, something went wrong.
No branches or pull requests
Version
3.2.31
Reproduction link
stackblitz.com
Steps to reproduce
Create a component in SFC mode and use defineProps with an extended interface, properties are not working
What is expected?
That the definition of properties have this support
What is actually happening?
defineProps with extended interface not working
The text was updated successfully, but these errors were encountered: