Skip to content

Commit 7c64219

Browse files
feat(language-service): rich hover message (#5881)
1 parent f4979cd commit 7c64219

File tree

17 files changed

+809
-931
lines changed

17 files changed

+809
-931
lines changed

packages/language-server/lib/server.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,11 @@ export function startServer(ts: typeof import('typescript')) {
103103
getComponentDirectives(...args) {
104104
return sendTsServerRequest('_vue:getComponentDirectives', args);
105105
},
106-
getComponentEvents(...args) {
107-
return sendTsServerRequest('_vue:getComponentEvents', args);
108-
},
109106
getComponentNames(...args) {
110107
return sendTsServerRequest('_vue:getComponentNames', args);
111108
},
112-
getComponentProps(...args) {
113-
return sendTsServerRequest('_vue:getComponentProps', args);
109+
getComponentMeta(...args) {
110+
return sendTsServerRequest('_vue:getComponentMeta', args);
114111
},
115112
getComponentSlots(...args) {
116113
return sendTsServerRequest('_vue:getComponentSlots', args);

0 commit comments

Comments
 (0)