-
-
Notifications
You must be signed in to change notification settings - Fork 594
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’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support the <script setup> syntax in SFCs #3108
Labels
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Feature Request
See https://v3.vuejs.org/api/sfc-script-setup.html
Currently there are no errors with the new
<script setup>
syntax, but variables defined in the script are displayed (e.g. component imports, computed etc.) as dimmed when they are never read in the script itself, because you don't have toreturn
them with this syntax and there is a tooltip<variable> is declared but its value is never read. Vetur(6133)
.The text was updated successfully, but these errors were encountered: