File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ import {
33
33
} from './errors'
34
34
import { applyToParams , isBrowser } from './utils'
35
35
import { useCallbacks } from './utils/callbacks'
36
- import { encodeParam , decode } from './encoding'
36
+ import { encodeParam , decode , encodeHash } from './encoding'
37
37
import {
38
38
normalizeQuery ,
39
39
parseQuery as originalParseQuery ,
@@ -244,6 +244,8 @@ export function createRouter({
244
244
currentLocation
245
245
)
246
246
247
+ const hash = encodeHash ( location . hash || '' )
248
+
247
249
// put back the unencoded params as given by the user (avoid the cost of decoding them)
248
250
// TODO: normalize params if we accept numbers as raw values
249
251
matchedRoute . params =
@@ -253,12 +255,15 @@ export function createRouter({
253
255
254
256
const fullPath = stringifyURL ( stringifyQuery , {
255
257
...location ,
258
+ hash,
256
259
path : matchedRoute . path ,
257
260
} )
258
261
259
262
return {
260
263
fullPath,
261
- hash : location . hash || '' ,
264
+ // keep the hash encoded so fullPath is effectively path + encodedQuery +
265
+ // hash
266
+ hash,
262
267
query : normalizeQuery ( location . query ) ,
263
268
...matchedRoute ,
264
269
redirectedFrom : undefined ,
You can’t perform that action at this time.
0 commit comments