mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
e7cc2757c3
Co-authored-by: Alexander Lichter <manniL@gmx.net>
19 lines
291 B
Vue
19 lines
291 B
Vue
<template>
|
|
<p>{{ name }}</p>
|
|
</template>
|
|
|
|
<script>
|
|
const fetchData = () => {
|
|
return new Promise((resolve) => {
|
|
setTimeout(() => resolve({ name: 'Await Nuxt.js' }), 10)
|
|
})
|
|
}
|
|
|
|
export default {
|
|
async asyncData () {
|
|
const data = await fetchData()
|
|
return data
|
|
}
|
|
}
|
|
</script>
|