Nuxt/examples/head-elements/pages/about.vue

32 lines
528 B
Vue
Raw Normal View History

2016-11-14 22:59:54 +00:00
<template>
<div class="container">
<h1>About page</h1>
<router-link to="/">Go to /</router-link>
<twitter-head></twitter-head>
</div>
</template>
<script>
2016-11-16 16:55:15 +00:00
import TwitterHead from '~components/twitter-head.vue'
2016-11-14 22:59:54 +00:00
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>