File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export function initBackend (_bridge) {
62
62
}
63
63
64
64
function connect ( {
65
- Vue = null ,
65
+ Vue = null
66
66
} = { } ) {
67
67
initSharedData ( {
68
68
bridge
@@ -211,6 +211,7 @@ function scan () {
211
211
let inFragment = false
212
212
let currentFragment = null
213
213
214
+ // eslint-disable-next-line no-inner-declarations
214
215
function processInstance ( instance ) {
215
216
if ( instance ) {
216
217
if ( rootInstances . indexOf ( instance . $root ) === - 1 ) {
@@ -260,7 +261,8 @@ function scan () {
260
261
}
261
262
262
263
if ( hook . apps . length ) {
263
- for ( const appRecord of hook . apps ) {
264
+ for ( let i = 0 , l = hook . apps . length ; i < l ; i ++ ) {
265
+ const appRecord = hook . apps [ i ]
264
266
const id = appRecord . id = ++ rootUID
265
267
const instance = appRecord . app . _container . _vnode . component
266
268
instance . __VUE_DEVTOOLS_ROOT_UID__ = id
You can’t perform that action at this time.
0 commit comments