Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
4f157bd
feat(language-service): rich hover message
johnsoncodehk Dec 16, 2025
1bc8941
Update vue-template.ts
johnsoncodehk Dec 16, 2025
fe1c3a8
fix(component-meta): resolve component node and source file for defau…
serkodev Dec 17, 2025
dd3d12e
[skip ci]
johnsoncodehk Dec 17, 2025
36bd4d8
[skip ci]
johnsoncodehk Dec 17, 2025
24d4093
Use HTML [skip ci]
johnsoncodehk Dec 17, 2025
7086304
[skip ci]
johnsoncodehk Dec 17, 2025
d4a1ac2
[skip ci]
johnsoncodehk Dec 17, 2025
3a0b7b9
[ckip ci]
johnsoncodehk Dec 17, 2025
bfd01e5
[skip ci]
johnsoncodehk Dec 17, 2025
b8994ed
[skip ci]
johnsoncodehk Dec 17, 2025
aca9158
[skip ci]
johnsoncodehk Dec 17, 2025
c482ad6
[skip ci]
johnsoncodehk Dec 17, 2025
b3e6ed5
[skip ci]
johnsoncodehk Dec 17, 2025
a08b740
Update vue-template.ts
johnsoncodehk Dec 17, 2025
2c8460a
Update vue-template.ts
johnsoncodehk Dec 17, 2025
a68c451
Update componentMeta.ts
johnsoncodehk Dec 17, 2025
16f7fc1
Update index.spec.ts
johnsoncodehk Dec 17, 2025
8483084
Update vue-template.ts
johnsoncodehk Dec 18, 2025
58eb140
wip [skip ci]
johnsoncodehk Dec 18, 2025
f267f58
[skip ci]
johnsoncodehk Dec 18, 2025
c3a2545
[skip ci]
johnsoncodehk Dec 18, 2025
6d264e1
[skip ci]
johnsoncodehk Dec 18, 2025
df77aab
[skip ci]
johnsoncodehk Dec 18, 2025
1bf5b8b
[skip ci]
johnsoncodehk Dec 18, 2025
89df2c1
[skip ci]
johnsoncodehk Dec 18, 2025
7061ce1
[skip ci]
johnsoncodehk Dec 18, 2025
0ea95b2
[skip ci]
johnsoncodehk Dec 18, 2025
2bf78b0
[skip ci]
johnsoncodehk Dec 18, 2025
c74be21
Update completions.spec.ts
johnsoncodehk Dec 18, 2025
de1fda3
Update vue-template.ts
johnsoncodehk Dec 18, 2025
af59eeb
v-model hint
johnsoncodehk Dec 18, 2025
b885a24
update
johnsoncodehk Dec 18, 2025
3f9840e
backward compatibility
johnsoncodehk Dec 18, 2025
bbf38e8
Update vue-missing-props-hints.ts
johnsoncodehk Dec 18, 2025
223dd31
Update index.spec.ts
johnsoncodehk Dec 18, 2025
05c67b3
update
johnsoncodehk Dec 18, 2025
a027be4
Merge branch 'master' into rich-hover-message
johnsoncodehk Dec 18, 2025
3750308
Update vue-template.ts
johnsoncodehk Dec 18, 2025
0b174e9
Update vue-template.ts
johnsoncodehk Dec 18, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions packages/language-server/lib/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,11 @@ export function startServer(ts: typeof import('typescript')) {
getComponentDirectives(...args) {
return sendTsServerRequest('_vue:getComponentDirectives', args);
},
getComponentEvents(...args) {
return sendTsServerRequest('_vue:getComponentEvents', args);
},
getComponentNames(...args) {
return sendTsServerRequest('_vue:getComponentNames', args);
},
getComponentProps(...args) {
return sendTsServerRequest('_vue:getComponentProps', args);
getComponentMeta(...args) {
return sendTsServerRequest('_vue:getComponentMeta', args);
},
getComponentSlots(...args) {
return sendTsServerRequest('_vue:getComponentSlots', args);
Expand Down
Loading