Skip to content
New issue

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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃悰 BUG: Using Vue component with optional properties in Astro file cause type error #849

Open
jerry84 opened this issue Apr 3, 2024 · 2 comments
Labels
needs triage Issue needs to be triaged

Comments

@jerry84
Copy link

jerry84 commented Apr 3, 2024

Describe the Bug

When I import a Vue component in an Astro file, it complains on optional properties when running astro check

This seems to happen from astrojs/[email protected]

Steps to Reproduce

  1. add a optional property to a Vue component
<script setup lang="ts">
const props = defineProps({
  value: {
    type: Number,
    default: 0,
  },
});
</script>
  1. import the component in .astro file without defining a value for the optional property
---
import Example from '../components/Example.vue';
---
<Example  client:visible />
  1. run astro check

Link to an reproducible example

@github-actions github-actions bot added the needs triage Issue needs to be triaged label Apr 3, 2024
@jerry84
Copy link
Author

jerry84 commented Apr 8, 2024

@Princesseuh Is this a known issue? Any idea on how to deal with this?

@Princesseuh
Copy link
Member

I don't know, seems like a bug. I haven't investigated yet

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs triage Issue needs to be triaged
Projects
None yet
Development

No branches or pull requests

2 participants