mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
20 lines
308 B
Vue
20 lines
308 B
Vue
<template>
|
|
<div>
|
|
<p>Hi from {{ name }}</p>
|
|
<NuxtLink to="/">
|
|
Home page
|
|
</NuxtLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
layout: ({ isMobile }) => isMobile ? 'mobile' : 'default',
|
|
asyncData({ req }) {
|
|
return {
|
|
name: req ? 'server' : 'client'
|
|
}
|
|
}
|
|
}
|
|
</script>
|