File tree 2 files changed +4
-11
lines changed
2 files changed +4
-11
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,11 +65,6 @@ 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
- }
73
68
devtoolsAppRecords . value = activeRecords
74
69
if ( devtoolsAppRecords . active . app === app )
75
70
await setActiveAppRecord ( activeRecords [ 0 ] )
Original file line number Diff line number Diff line change @@ -8,10 +8,8 @@ import 'uno.css'
8
8
9
9
const app = createApp ( App )
10
10
11
+ const app2 = createApp ( App2 )
12
+
11
13
app . mount ( '#app' )
12
14
13
- setTimeout ( ( ) => {
14
- app . unmount ( )
15
- app . mount ( '#app' )
16
- createApp ( App2 ) . mount ( '#app2' )
17
- } , 500 )
15
+ app2 . mount ( '#app2' )
You can’t perform that action at this time.
0 commit comments