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

17 lines
198 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>
<NuxtLink to="/about">
About page
</NuxtLink>
</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>