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
2.1.6
1.91.1
3.5.12
none
System: OS: macOS 15.0 CPU: (8) arm64 Apple M1 Memory: 612.30 MB / 16.00 GB Shell: 5.9 - /bin/zsh Binaries: Node: 20.9.0 - /usr/local/bin/node Yarn: 1.22.18 - ~/.yarn/bin/yarn npm: 10.1.0 - /usr/local/bin/npm Browsers: Chrome: 129.0.6668.100 Safari: 18.0
No response
index.html:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <div id="app"> {{ message }}<span v-if="cNum">{{ cNum }}</span> <div><button @click="test()">Change Message</button></div> </div> <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/3.5.12/vue.global.prod.min.js"></script> <script> Vue.createApp({ data() { return { message: 'Hello Vue ' } }, computed: { cNum() { return 3; } }, methods: { updateMessage(value) { this.message = value; }, test() { this.updateMessage(this.cNum); } } }).mount('#app'); </script> </body> </html>
Test go to definition:
go to definition should work in these cases
in .html files (HTML language):
The text was updated successfully, but these errors were encountered:
Currently, files other than SFC are not supported.
Sorry, something went wrong.
No branches or pull requests
Vue - Official extension or vue-tsc version
2.1.6
VSCode version
1.91.1
Vue version
3.5.12
TypeScript version
none
System Info
System: OS: macOS 15.0 CPU: (8) arm64 Apple M1 Memory: 612.30 MB / 16.00 GB Shell: 5.9 - /bin/zsh Binaries: Node: 20.9.0 - /usr/local/bin/node Yarn: 1.22.18 - ~/.yarn/bin/yarn npm: 10.1.0 - /usr/local/bin/npm Browsers: Chrome: 129.0.6668.100 Safari: 18.0
package.json dependencies
No response
Steps to reproduce
index.html:
Test go to definition:
What is expected?
go to definition should work in these cases
What is actually happening?
in .html files (HTML language):
Link to minimal reproduction
No response
Any additional comments?
No response
The text was updated successfully, but these errors were encountered: