mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-21 07:59:33 +00:00
17 lines
282 B
Vue
17 lines
282 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<p>Hi from {{ name }}</p>
|
||
|
<nuxt-link to="/">Home page</nuxt-link>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
asyncData ({ isStatic, isServer }) {
|
||
|
return {
|
||
|
name: isStatic ? 'static' : (isServer ? 'server' : 'client')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|