mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
27 lines
428 B
Vue
27 lines
428 B
Vue
<template>
|
|
<div class="container">
|
|
<p>Hello {{ name }}!</p>
|
|
<nuxt-link to="/about">Go to /about</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
asyncData () {
|
|
return new Promise((resolve) => {
|
|
setTimeout(function () {
|
|
resolve({ name: 'world' })
|
|
}, 1000)
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.container {
|
|
font-size: 20px;
|
|
text-align: center;
|
|
padding-top: 100px;
|
|
}
|
|
</style>
|