-
-
Notifications
You must be signed in to change notification settings - Fork 527
Closed
Labels
Description
Vue - Official extension or vue-tsc version
3.1.8
VSCode version
1.106.3
Vue version
3.5.25
TypeScript version
5.9.3
System Info
package.json dependencies
Steps to reproduce
- Create a basic
.vuefile:
<script setup>
</script>
<template>
{{ testFn }}
</template>- Create a basic
.jsfile:
export function testFn() {
console.log('testFn');
}- Try to CTRL+SPACE on
testFn, it should suggest to import that function (as in <= 3.1.5).
What is expected?
Import suggestion (in 3.1.5):
What is actually happening?
No import suggestion (in 3.1.8):
Link to minimal reproduction
https://github.com/twisterniq/vue-official-no-import-suggestion
Any additional comments?
No response
Reactions are currently unavailable