Skip to content

Commit 1a8ffc1

Browse files
committed
fix(encoding): keep decoded hash when resolving
1 parent 367f063 commit 1a8ffc1

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

__tests__/urlEncoding.spec.ts

+13
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,17 @@ describe('URL Encoding', () => {
128128
query: { p: '%' },
129129
})
130130
})
131+
132+
it('keeps decoded values in hash', async () => {
133+
// @ts-ignore: override to make the difference
134+
encoding.decode = () => 'd'
135+
// @ts-ignore
136+
encoding.encodeHash = () => '#e'
137+
const router = createRouter()
138+
await router.push({ name: 'home', hash: '#%' })
139+
expect(router.currentRoute.value).toMatchObject({
140+
fullPath: '/#e',
141+
hash: '#%',
142+
})
143+
})
131144
})

src/router.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ export function createRouter(options: RouterOptions): Router {
455455
}
456456

457457
let matchedRoute = matcher.resolve(matcherLocation, currentLocation)
458-
const hash = encodeHash(rawLocation.hash || '')
458+
const hash = rawLocation.hash || ''
459459

460460
if (__DEV__ && hash && !hash.startsWith('#')) {
461461
warn(
@@ -470,7 +470,7 @@ export function createRouter(options: RouterOptions): Router {
470470
const fullPath = stringifyURL(
471471
stringifyQuery,
472472
assign({}, rawLocation, {
473-
hash,
473+
hash: encodeHash(hash),
474474
path: matchedRoute.path,
475475
})
476476
)

0 commit comments

Comments
 (0)