Nuxt/examples/pug/pages/index.vue
Alexander Lichter bf505eccd5 chore: add pug example (#4409)
[skip release]
2018-11-25 15:43:07 +03:30

14 lines
168 B
Vue
Executable File

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