Nuxt/examples/hello-world/pages/about.vue

20 lines
304 B
Vue
Raw Normal View History

2016-11-07 01:34:58 +00:00
<template>
2016-12-24 13:15:24 +00:00
<div>
<p>Hi from {{ name }}</p>
<n-link to="/">Home page</n-link>
2016-12-24 13:15:24 +00:00
</div>
2016-11-07 01:34:58 +00:00
</template>
<script>
export default {
2017-10-31 13:43:55 +00:00
asyncData() {
return {
2017-10-28 12:09:21 +00:00
name: process.static ? 'static' : (process.server ? 'server' : 'client')
}
2018-01-17 08:43:11 +00:00
},
head: {
title: 'About page'
}
}
</script>