This website requires JavaScript.
Explore
Help
Sign In
terribleplan
/
next.js
Watch
1
Star
0
Fork
You've already forked next.js
0
mirror of
https://github.com/terribleplan/next.js.git
synced
2024-01-19 02:48:18 +00:00
Code
Issues
Releases
Wiki
Activity
63c25a9c60
next.js
/
examples
/
with-loading
/
pages
/
index.js
4 lines
67 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Implement Router Events (#511) * Move route loading logic to a common place. * Add router events. * Add EventEmitter's core API methods. * Add example app for loading events and docs. * Fix some typos. * Get rid of Router.ready() * Remove events package. It's already shipping with webpack. * Handling aborting properly. * Expose simple attribute based events listener API. Removed the proposed event listener API from the public API. * Remove error logged when there's an abort error. There are many other ways to capture this error. So, it doesn't look nice to print this always. * Change router events to pass only the current URL as arguments. * Add a section about Cancelled Routes to README.
2016-12-31 01:15:22 +00:00
import
React
from
'react'
update with-loading example (#4836) Changes: * Split `Header` component trough `_document.js` and `_app.js` * Attached Router events with a way described in the [documentation](https://github.com/zeit/next.js#router-events) (though in the documentation is says it should be `Router.events.on` while I managed to get it working only by `Router.router.events.on` and I had to place it inside `componentDidMount`)
2018-08-12 02:39:48 +00:00
export
default
(
)
=>
<
p
>
Hello
Next
!
<
/
p
>
Reference in a new issue
Copy permalink