Nuxt/examples/pug/pages/index.vue

14 lines
168 B
Vue
Raw Normal View History

<template lang="pug">
div
h1 Welcome
NuxtLink(to="/about") About Page
</template>
<script>
export default {
head: {
title: 'Home page'
}
}
</script>