mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
23 lines
755 B
Vue
23 lines
755 B
Vue
<template>
|
|
<span v-if="false"></span>
|
|
</template>
|
|
|
|
<script>
|
|
// Test on: https://cards-dev.twitter.com/validator
|
|
export default {
|
|
data: () => ({
|
|
href: 'https://twitter.com/intent/tweet?url=' + encodeURIComponent('https://head-elements.now.sh/about')
|
|
}),
|
|
head: {
|
|
meta: [
|
|
{ name: 'twitter:card', content: 'summary' },
|
|
{ name: 'twitter:site', content: '@nuxt_js' },
|
|
{ name: 'twitter:title', content: 'Nuxt.js Twitter Card' },
|
|
{ name: 'twitter:description', content: 'Nuxt.js lets you handle custom headers for your app with vue-meta' },
|
|
{ name: 'twitter:image', content: 'https://avatars0.githubusercontent.com/u/23360933?v=3' },
|
|
{ name: 'twitter:image:alt', content: 'Nuxt.js logo' }
|
|
]
|
|
}
|
|
}
|
|
</script>
|