Nuxt/examples/hello-world-jsx/pages/index.js
2017-10-31 21:43:55 +08:00

9 lines
142 B
JavaScript

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