Nuxt/examples/hello-world-jsx/pages/about.vue
Sébastien Chopin bea7b73ad5 Example with JSX
2017-02-17 16:12:20 +01:00

16 lines
245 B
Vue

<script>
export default {
data ({ req }) {
return {
name: req ? 'server' : 'client'
}
},
render (h) {
return <div>
<p>Hi from {this.name}</p>
<nuxt-link to="/">Home page</nuxt-link>
</div>
}
}
</script>