Skip to content

Commit 56f1364

Browse files
committed
chore: comments
1 parent 74addd8 commit 56f1364

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: types/router.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -414,13 +414,13 @@ export interface RouteMeta extends Record<string | number | symbol, any> {}
414414

415415
export interface RouterLinkProps {
416416
/**
417-
* Denotes the target route of the link. When clicked, the value of the `to` prop will be passed to `router.push()`
418-
* internally, so the value can be either a string or a location descriptor object.
417+
* Denotes the target route of the link. When clicked, the value of the `to` prop will be passed to
418+
* `router.push()` internally, so the value can be either a string or a location descriptor object.
419419
*/
420420
to: string | Location
421421
/**
422422
* Setting `replace` prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will
423-
* not leave a history record.
423+
* not create a new history record.
424424
*
425425
* @default false
426426
*/

0 commit comments

Comments
 (0)