File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -128,4 +128,17 @@ describe('URL Encoding', () => {
128
128
query : { p : '%' } ,
129
129
} )
130
130
} )
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
+ } )
131
144
} )
Original file line number Diff line number Diff line change @@ -455,7 +455,7 @@ export function createRouter(options: RouterOptions): Router {
455
455
}
456
456
457
457
let matchedRoute = matcher . resolve ( matcherLocation , currentLocation )
458
- const hash = encodeHash ( rawLocation . hash || '' )
458
+ const hash = rawLocation . hash || ''
459
459
460
460
if ( __DEV__ && hash && ! hash . startsWith ( '#' ) ) {
461
461
warn (
@@ -470,7 +470,7 @@ export function createRouter(options: RouterOptions): Router {
470
470
const fullPath = stringifyURL (
471
471
stringifyQuery ,
472
472
assign ( { } , rawLocation , {
473
- hash,
473
+ hash : encodeHash ( hash ) ,
474
474
path : matchedRoute . path ,
475
475
} )
476
476
)
You can’t perform that action at this time.
0 commit comments