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
App.vue
lang="ts"
Any version available on Playground
https://play.vuejs.org
- <script setup> + <script setup lang="ts"> import { ref } from 'vue' const msg = ref('Hello World!') + '' satisfies number </script>
Type error to be reported on line '' satisfies number.
'' satisfies number
Type error does not get reported, until refreshing the playground.
The issue seems to specifically affect App.vue, as it is not reproducible with the same steps but on a newly created component (or a .ts file).
.ts
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Vue version
Any version available on Playground
Link to minimal reproduction
https://play.vuejs.org
Steps to reproduce
App.vue
as follows:What is expected?
Type error to be reported on line
'' satisfies number
.What is actually happening?
Type error does not get reported, until refreshing the playground.
System Info
Any additional comments?
The issue seems to specifically affect
App.vue
, as it is not reproducible with the same steps but on a newly created component (or a.ts
file).The text was updated successfully, but these errors were encountered: