Nuxt/test/fixtures/basic/pages/head.vue
2017-11-06 13:49:24 +01:00

20 lines
255 B
Vue
Executable File

<template>
<div>
<h1>I can haz meta tags</h1>
</div>
</template>
<script>
export default {
head: {
title: 'My title',
meta: [
{ content: 'my meta' }
],
script: [
{ src: '/body.js', body: true }
]
}
}
</script>