Nuxt/examples/pug/pages/about.vue

19 lines
292 B
Vue
Executable File

<template lang="pug">
div
p Hi from {{ name }}
NuxtLink(to="/") Home Page
</template>
<script>
export default {
asyncData() {
return {
name: process.static ? 'static' : (process.server ? 'server' : 'client')
}
},
head: {
title: 'About page'
}
}
</script>