Nuxt/examples/with-feathers/pages/about.vue

17 lines
241 B
Vue
Raw Normal View History

2017-01-11 19:13:38 +00:00
<template>
<div>
<p>Hi from {{ name }}</p>
<nuxt-link to="/">Home page</nuxt-link>
</div>
</template>
<script>
export default {
2017-10-31 13:43:55 +00:00
asyncData() {
2017-01-11 19:13:38 +00:00
return {
name: process.server ? 'server' : 'client'
2017-01-11 19:13:38 +00:00
}
}
}
</script>