Nuxt/examples/hello-world-jsx/pages/index.js

9 lines
143 B
JavaScript

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