We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef0920a commit fcf2365Copy full SHA for fcf2365
src/router.ts
@@ -284,6 +284,12 @@ export function createRouter(options: RouterOptions): Router {
284
285
const hash = encodeHash(rawLocation.hash || '')
286
287
+ if (__DEV__ && hash && hash[0] !== '#') {
288
+ warn(
289
+ `A \`hash\` should always start with the character "#". Replace "${hash}" with "#${hash}".`
290
+ )
291
+ }
292
+
293
// put back the unencoded params as given by the user (avoid the cost of decoding them)
294
matchedRoute.params =
295
'params' in rawLocation
0 commit comments