File tree 2 files changed +11
-4
lines changed
2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export function initDevTools() {
56
56
} ,
57
57
]
58
58
59
- if ( devtoolsAppRecords . value . length == = 1 ) {
59
+ if ( devtoolsAppRecords . value . length > = 1 ) {
60
60
await setActiveAppRecord ( devtoolsAppRecords . value [ 0 ] )
61
61
devtoolsState . connected = true
62
62
devtoolsHooks . callHook ( DevToolsHooks . APP_CONNECTED )
@@ -65,6 +65,11 @@ export function initDevTools() {
65
65
66
66
hook . on . vueAppUnmount ( async ( app ) => {
67
67
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
+ }
68
73
devtoolsAppRecords . value = activeRecords
69
74
if ( devtoolsAppRecords . active . app === app )
70
75
await setActiveAppRecord ( activeRecords [ 0 ] )
Original file line number Diff line number Diff line change @@ -8,8 +8,10 @@ import 'uno.css'
8
8
9
9
const app = createApp ( App )
10
10
11
- const app2 = createApp ( App2 )
12
-
13
11
app . mount ( '#app' )
14
12
15
- app2 . mount ( '#app2' )
13
+ setTimeout ( ( ) => {
14
+ app . unmount ( )
15
+ app . mount ( '#app' )
16
+ createApp ( App2 ) . mount ( '#app2' )
17
+ } , 500 )
You can’t perform that action at this time.
0 commit comments