Skip to content

Commit 8462551

Browse files
committed
feat(devtools): warn against old devtools version
See #1338
1 parent b841b4c commit 8462551

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/router/src/devtools.ts

+6
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ export function addDevtools(app: App, router: Router, matcher: RouterMatcher) {
7272
app,
7373
},
7474
api => {
75+
if (typeof api.now !== 'function') {
76+
console.warn(
77+
'[Vue Router]: You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html.'
78+
)
79+
}
80+
7581
// display state added by the router
7682
api.on.inspectComponent((payload, ctx) => {
7783
if (payload.instanceData) {

0 commit comments

Comments
 (0)