This line https://github.com/vuejs/vue-router/blob/dev/src/util/location.js#L27 ```javascript } else if (current.matched) { ``` `current.matched` is an Array, so this condition should be ```javascript } else if (current.matched.length === 0) { ```