Nuxt/examples/head-elements/components/twitter-head.vue
2016-11-14 23:59:54 +01:00

17 lines
192 B
Vue

<template>
<span v-if="false"></span>
</template>
<script>
export default {
head: {
meta: [
{ name: 'lol', content: 'hello' }
]
}
}
</script>
<style lang="css">
</style>