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