Skip to content

Commit 967d293

Browse files
authoredMay 19, 2024
fix: page can't navigation, revert #357
This reverts commit a12c816.
1 parent fdac6eb commit 967d293

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed
 

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

+1-6
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,11 +65,6 @@ 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-
}
7368
devtoolsAppRecords.value = activeRecords
7469
if (devtoolsAppRecords.active.app === app)
7570
await setActiveAppRecord(activeRecords[0])

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

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

99
const app = createApp(App)
1010

11+
const app2 = createApp(App2)
12+
1113
app.mount('#app')
1214

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

0 commit comments

Comments
 (0)