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

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>