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
Consider two simple files:
Test.vue:
Test.vue
<template> <div></div> </template> <script> export default { props: ['foo', 'bar'] } </script>
Parent.vue:
Parent.vue
<template> <test :foo="1" /> </template> <script> import Test from "./Test.vue"; export default { components: { Test } }; </script>
The error <test> misses props: bar can be seen in editor, but vti diagnostics generates nothing.
<test> misses props: bar
vti diagnostics
The text was updated successfully, but these errors were encountered:
51936f0
No branches or pull requests
Consider two simple files:
Test.vue
:Parent.vue
:The error
<test> misses props: bar
can be seen in editor, butvti diagnostics
generates nothing.The text was updated successfully, but these errors were encountered: