diff --git a/readme.md b/readme.md index 25f49a38..8cc03351 100644 --- a/readme.md +++ b/readme.md @@ -319,6 +319,8 @@ export default () => ( That will generate the URL string `/about?name=Zeit`, you can use every property as defined in the [Node.js URL module documentation](https://nodejs.org/api/url.html#url_url_strings_and_url_objects). +##### Replace instead of push url + The default behaviour for the `` component is to `push` a new url into the stack. You can use the `replace` prop to prevent adding a new entry. ```jsx @@ -329,6 +331,18 @@ export default () => ( ) ``` +##### Using a component that support `onClick` + +`` supports any component that supports the `onClick` event. In case you don't provide an `` tag, it will only add the `onClick` event handler and won't pass the `href` property. + +```jsx +// pages/index.js +import Link from 'next/link' +export default () => ( +
Click
+) +``` + #### Imperatively