mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 22:25:12 +00:00
Update README.md
This commit is contained in:
parent
5d82cf3d68
commit
6cda84ed49
@ -9,7 +9,7 @@
|
|||||||
The `data` method receives the context as the first argument, you can use it to fetch some data and return the component data. To make the data method asynchronous, Nuxt.js offers you different ways, choose the one you're the most familiar with:
|
The `data` method receives the context as the first argument, you can use it to fetch some data and return the component data. To make the data method asynchronous, Nuxt.js offers you different ways, choose the one you're the most familiar with:
|
||||||
|
|
||||||
1. returning a `Promise`, Nuxt.js will wait for the promise to be resolved before rendering the Component
|
1. returning a `Promise`, Nuxt.js will wait for the promise to be resolved before rendering the Component
|
||||||
2. Using the async/await ES7 feature
|
2. Using the ES7 `async` method with `await`
|
||||||
3. Define a second argument which is a callback method to be called like this: `callback(err, data)`
|
3. Define a second argument which is a callback method to be called like this: `callback(err, data)`
|
||||||
|
|
||||||
Example with returning a `Promise`:
|
Example with returning a `Promise`:
|
||||||
|
Loading…
Reference in New Issue
Block a user