mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
18 lines
255 B
Vue
18 lines
255 B
Vue
<template>
|
|
<div>
|
|
<p>Hi from {{ name }}</p>
|
|
<nuxt-link to="/">Home page</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
layout: 'dark',
|
|
asyncData({ req }) {
|
|
return {
|
|
name: req ? 'server' : 'client'
|
|
}
|
|
}
|
|
}
|
|
</script>
|