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

11 lines
161 B
Vue

<script>
export default {
render (h) {
return <div>
<h1>Welcome!</h1>
<nuxt-link to="/about">About page</nuxt-link>
</div>
}
}
</script>