Nuxt/examples/spa/pages/about.vue

17 lines
243 B
Vue
Raw Normal View History

2017-08-18 13:44:43 +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-08-18 13:44:43 +00:00
return {
name: (process.server ? 'server' : 'client')
2017-08-18 13:44:43 +00:00
}
}
}
</script>