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
For Hooks styled components, such as these
import Vue from 'vue' import Component from 'vue-class-component' @Component export default class HelloWorld extends Vue { // Declare mounted lifecycle hook mounted() { console.log('mounted') } // Declare render function render() { return <div>Hello World!</div> } }
I get little to no proper autocomplete. I start typing div with the expected div in the list of suggestions, but instead I get this:
div
Autocomplete works with <template></template> but not for JSX.
<template></template>
I have Vetur + Vue installed as VS Code extension.
Anyone recognising this? Got a trick up your sleeve?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For Hooks styled components, such as these
I get little to no proper autocomplete. I start typing
div
with the expecteddiv
in the list of suggestions, but instead I get this:Autocomplete works with
<template></template>
but not for JSX.I have Vetur + Vue installed as VS Code extension.
Anyone recognising this? Got a trick up your sleeve?
The text was updated successfully, but these errors were encountered: