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

15 lines
188 B
Vue
Raw Normal View History

2016-11-07 01:34:58 +00:00
<template>
2016-11-27 12:39:52 +00:00
<div>
<h1>Welcome!</h1>
2016-12-16 17:12:38 +00:00
<nuxt-link to="/about">About page</nuxt-link>
</div>
2016-11-07 01:34:58 +00:00
</template>
2018-01-17 08:43:11 +00:00
<script>
export default {
head: {
title: 'Home page'
}
}
</script>