Skip to content

Commit 2e5d0d4

Browse files
committed
feat(devtools): support multiple router instances
1 parent 0cad7ae commit 2e5d0d4

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

rollup.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function createConfig(format, output, plugins = []) {
6464
output.sourcemap = !!process.env.SOURCE_MAP
6565
output.banner = banner
6666
output.externalLiveBindings = false
67-
output.globals = { vue: 'Vue' }
67+
output.globals = { vue: 'Vue', '@vue/devtools-api': 'VueDevtoolsApi' }
6868

6969
const isProductionBuild = /\.prod\.js$/.test(output.file)
7070
const isGlobalBuild = format === 'global'
@@ -94,7 +94,7 @@ function createConfig(format, output, plugins = []) {
9494
// during a single build.
9595
hasTSChecked = true
9696

97-
const external = ['vue']
97+
const external = ['vue', '@vue/devtools-api']
9898

9999
const nodePlugins = [resolve(), commonjs()]
100100

src/devtools.ts

+10-5
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,17 @@ function formatDisplay(display: string) {
4444
}
4545
}
4646

47+
// to support multiple router instances
48+
let routerId = 0
49+
4750
export function addDevtools(app: App, router: Router, matcher: RouterMatcher) {
4851
// Take over router.beforeEach and afterEach
4952

53+
// increment to support multiple router instances
54+
const id = routerId++
5055
setupDevtoolsPlugin(
5156
{
52-
id: 'Router',
57+
id: 'Router' + id ? ' ' + id : '',
5358
label: 'Router devtools',
5459
app,
5560
},
@@ -73,11 +78,11 @@ export function addDevtools(app: App, router: Router, matcher: RouterMatcher) {
7378
api.notifyComponentUpdate()
7479
})
7580

76-
const navigationsLayerId = 'router:navigations'
81+
const navigationsLayerId = 'router:navigations:' + id
7782

7883
api.addTimelineLayer({
7984
id: navigationsLayerId,
80-
label: 'Router Navigations',
85+
label: `Router${id ? ' ' + id : ''} Navigations`,
8186
color: 0x40a8c4,
8287
})
8388

@@ -159,11 +164,11 @@ export function addDevtools(app: App, router: Router, matcher: RouterMatcher) {
159164
})
160165
})
161166

162-
const routerInspectorId = 'router-inspector'
167+
const routerInspectorId = 'router-inspector:' + id
163168

164169
api.addInspector({
165170
id: routerInspectorId,
166-
label: 'Routes',
171+
label: 'Routes' + id ? ' ' + id : '',
167172
icon: 'book',
168173
treeFilterPlaceholder: 'Search routes',
169174
})

0 commit comments

Comments
 (0)