Skip to content

Commit a12c816

Browse files
authoredMay 3, 2024··
fix: disconnect when all apps are unmount (#357)
1 parent 3e2d40b commit a12c816

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed
 

‎packages/devtools-kit/src/core/index.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export function initDevTools() {
5656
},
5757
]
5858

59-
if (devtoolsAppRecords.value.length === 1) {
59+
if (devtoolsAppRecords.value.length >= 1) {
6060
await setActiveAppRecord(devtoolsAppRecords.value[0])
6161
devtoolsState.connected = true
6262
devtoolsHooks.callHook(DevToolsHooks.APP_CONNECTED)
@@ -65,6 +65,11 @@ export function initDevTools() {
6565

6666
hook.on.vueAppUnmount(async (app) => {
6767
const activeRecords = devtoolsAppRecords.value.filter(appRecord => appRecord.app !== app)
68+
// #356 should disconnect when all apps are unmounted
69+
if (activeRecords.length === 0) {
70+
devtoolsState.connected = false
71+
return
72+
}
6873
devtoolsAppRecords.value = activeRecords
6974
if (devtoolsAppRecords.active.app === app)
7075
await setActiveAppRecord(activeRecords[0])

‎packages/playground/multi-app/src/main.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ import 'uno.css'
88

99
const app = createApp(App)
1010

11-
const app2 = createApp(App2)
12-
1311
app.mount('#app')
1412

15-
app2.mount('#app2')
13+
setTimeout(() => {
14+
app.unmount()
15+
app.mount('#app')
16+
createApp(App2).mount('#app2')
17+
}, 500)

0 commit comments

Comments
 (0)
Please sign in to comment.