@@ -33,20 +33,21 @@ export function initDevTools() {
33
33
if ( target . __VUE_DEVTOOLS_GLOBAL_HOOK__ && isDevToolsNext )
34
34
return
35
35
36
- if ( ! target . __VUE_DEVTOOLS_GLOBAL_HOOK__ ) {
37
- target . __VUE_DEVTOOLS_GLOBAL_HOOK__ = createDevToolsHook ( )
38
- }
39
- else {
40
- // respect old devtools hook in nuxt application
41
- if ( ! isNuxtApp ) {
42
- // override devtools hook directly
43
- Object . assign ( __VUE_DEVTOOLS_GLOBAL_HOOK__ , createDevToolsHook ( ) )
36
+ const _devtoolsHook = createDevToolsHook ( )
37
+
38
+ if ( target . __VUE_DEVTOOLS_HOOK_REPLAY__ ) {
39
+ try {
40
+ target . __VUE_DEVTOOLS_HOOK_REPLAY__ . forEach ( cb => cb ( _devtoolsHook ) )
41
+ target . __VUE_DEVTOOLS_HOOK_REPLAY__ = [ ]
42
+ }
43
+ catch ( e ) {
44
+ console . error ( '[vue-devtools] Error during hook replay' , e )
44
45
}
45
46
}
46
47
47
48
// @ts -expect-error skip type check
48
49
// Vue2 app detection
49
- target . __VUE_DEVTOOLS_GLOBAL_HOOK__ . once ( 'init' , ( Vue ) => {
50
+ _devtoolsHook . once ( 'init' , ( Vue ) => {
50
51
target . __VUE_DEVTOOLS_VUE2_APP_DETECTED__ = true
51
52
52
53
console . log ( '%c[_____Vue DevTools v7 log_____]' , 'color: red; font-bold: 600; font-size: 16px;' )
@@ -76,7 +77,7 @@ export function initDevTools() {
76
77
onLegacyDevToolsPluginApiAvailable ( ( ) => {
77
78
const normalizedPluginBuffer = devtoolsPluginBuffer . filter ( ( [ item ] ) => item . id !== 'components' )
78
79
normalizedPluginBuffer . forEach ( ( [ pluginDescriptor , setupFn ] ) => {
79
- target . __VUE_DEVTOOLS_GLOBAL_HOOK__ . emit ( DevToolsHooks . SETUP_DEVTOOLS_PLUGIN , pluginDescriptor , setupFn , { target : 'legacy' } )
80
+ _devtoolsHook . emit ( DevToolsHooks . SETUP_DEVTOOLS_PLUGIN , pluginDescriptor , setupFn , { target : 'legacy' } )
80
81
} )
81
82
} )
82
83
@@ -102,7 +103,7 @@ export function initDevTools() {
102
103
connected : true ,
103
104
} )
104
105
105
- target . __VUE_DEVTOOLS_GLOBAL_HOOK__ . apps . push ( app )
106
+ _devtoolsHook . apps . push ( app )
106
107
} )
107
108
108
109
hook . on . vueAppUnmount ( async ( app ) => {
@@ -126,7 +127,22 @@ export function initDevTools() {
126
127
removeRegisteredPluginApp ( app )
127
128
} )
128
129
129
- subscribeDevToolsHook ( )
130
+ subscribeDevToolsHook ( _devtoolsHook )
131
+
132
+ if ( ! target . __VUE_DEVTOOLS_GLOBAL_HOOK__ ) {
133
+ Object . defineProperty ( target , '__VUE_DEVTOOLS_GLOBAL_HOOK__' , {
134
+ get ( ) {
135
+ return _devtoolsHook
136
+ } ,
137
+ } )
138
+ }
139
+ else {
140
+ // respect old devtools hook in nuxt application
141
+ if ( ! isNuxtApp ) {
142
+ // override devtools hook directly
143
+ Object . assign ( __VUE_DEVTOOLS_GLOBAL_HOOK__ , _devtoolsHook )
144
+ }
145
+ }
130
146
}
131
147
132
148
export function onDevToolsClientConnected ( fn : ( ) => void ) {
0 commit comments