Skip to content

Commit f7ffb32

Browse files
committedJun 7, 2024
fix: restore server rpc listeners when reload client
1 parent 8d08934 commit f7ffb32

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎packages/client/src/main.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import 'floating-vue/dist/style.css'
33
import { getViteClient } from 'vite-hot-client'
44

55
import { isInSeparateWindow } from '@vue/devtools-shared'
6-
import { VueDevToolsVuePlugin, createViteClientRpc, functions } from '@vue/devtools-core'
6+
import { VueDevToolsVuePlugin, createViteClientRpc, functions, rpc } from '@vue/devtools-core'
77
import { createRpcClient, setViteClientContext } from '@vue/devtools-kit'
88
import { createApp } from 'vue'
99
import type { App as VueApp } from 'vue'
@@ -104,5 +104,6 @@ export function disconnectDevToolsClient() {
104104
}
105105

106106
export function reloadDevToolsClient() {
107+
rpc.value.initDevToolsServerListener()
107108
vueApp?.config?.globalProperties?.$getDevToolsState()
108109
}

0 commit comments

Comments
 (0)
Please sign in to comment.