We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ada2857 commit c8dc720Copy full SHA for c8dc720
1 file changed
packages/language-service/lib/plugins/vue-inlayhints.ts
@@ -317,6 +317,16 @@ export function findDestructuredProps(
317
}
318
319
320
+ if (
321
+ ts.isBindingElement(parent)
322
+ || ts.isImportSpecifier(parent)
323
+ || ts.isExportSpecifier(parent)
324
+ ) {
325
+ if (parent.propertyName === id) {
326
+ return false;
327
+ }
328
329
+
330
return true;
331
332
0 commit comments