Closed jeroenpelgrims closed 8 months ago
With the following code, the query parameter has a value with %2522 in it. This is a double encoding of a double quote character. Probably vue-router is already doing a url encoding internally and we don't have to do it in the ObjectParam ourselves.
%2522
type MyObject = { foo: string; } const orderBy = useQueryParam("orderBy", ObjectParam<keyof MyObject>());
With the following code, the query parameter has a value with
%2522
in it. This is a double encoding of a double quote character. Probably vue-router is already doing a url encoding internally and we don't have to do it in the ObjectParam ourselves.