Skip to content

Commit

Permalink
fix(devtools): id and label (#742)
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Jan 31, 2021
1 parent 80fc788 commit d034307
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/devtools.ts
Expand Up @@ -57,8 +57,8 @@ export function addDevtools(app: App, router: Router, matcher: RouterMatcher) {
const id = routerId++
setupDevtoolsPlugin(
{
id: 'Router' + id ? ' ' + id : '',
label: 'Router devtools',
id: 'Router' + (id ? ' ' + id : ''),
label: 'Vue Router',
app,
},
api => {
Expand Down

0 comments on commit d034307

Please sign in to comment.