Nuxt/examples/extend-app/pages/about.vue

17 lines
233 B
Vue
Raw Normal View History

<template>
<div>
<p>Hi from {{ name }}</p>
2016-12-16 17:12:38 +00:00
<nuxt-link to="/">Home page</nuxt-link>
</div>
</template>
<script>
export default {
data ({ req }) {
return {
name: req ? 'server' : 'client'
}
}
}
</script>