mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
17 lines
250 B
Vue
17 lines
250 B
Vue
<template>
|
|
<div>
|
|
<p>Hi from {{ name }}</p>
|
|
<nuxt-link to="/">Home page</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
asyncData ({ isServer }) {
|
|
return {
|
|
name: (isServer ? 'server' : 'client')
|
|
}
|
|
}
|
|
}
|
|
</script>
|