-
-
Notifications
You must be signed in to change notification settings - Fork 203
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
Wrong autocomplete for Components nested in objects #776
Comments
This is the same cause of #538. But because the tag is not closed. One workaround is to self close it first like this.
or
And then trigger completion |
Possible solution: Try to parse it with <script>
import { Hi } from './hi'
let foo = 'bar';
</script>
<Hi. becomes import { Hi } from './hi'
let foo = 'bar';
Hi. (the This could also solve other cases where intellisense is not working properly currently. |
Expected autocomplete to show properties, got every global variable instead
edit: actions nested in objects have the same issue (
use:object.action
)The text was updated successfully, but these errors were encountered: