Nuxt/examples/head-elements/pages/about.vue
2016-11-16 17:55:26 +01:00

32 lines
528 B
Vue

<template>
<div class="container">
<h1>About page</h1>
<router-link to="/">Go to /</router-link>
<twitter-head></twitter-head>
</div>
</template>
<script>
import TwitterHead from '~components/twitter-head.vue'
export default {
head: {
title: 'About 2',
meta: [
{ hid: 'description', name: 'description', content: 'About page description' }
]
},
components: {
TwitterHead
}
}
</script>
<style>
.container {
text-align: center;
margin-top: 150px;
font-size: 20px;
}
</style>