Skip to content

Commit fcf2365

Browse files
committed
feat(warn): warn invalid hash
1 parent ef0920a commit fcf2365

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/router.ts

+6
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,12 @@ export function createRouter(options: RouterOptions): Router {
284284

285285
const hash = encodeHash(rawLocation.hash || '')
286286

287+
if (__DEV__ && hash && hash[0] !== '#') {
288+
warn(
289+
`A \`hash\` should always start with the character "#". Replace "${hash}" with "#${hash}".`
290+
)
291+
}
292+
287293
// put back the unencoded params as given by the user (avoid the cost of decoding them)
288294
matchedRoute.params =
289295
'params' in rawLocation

0 commit comments

Comments
 (0)