Nuxt/test/fixtures/basic/pages/head.vue

20 lines
255 B
Vue
Raw Normal View History

2016-12-09 17:51:19 +00:00
<template>
<div>
<h1>I can haz meta tags</h1>
</div>
</template>
<script>
export default {
head: {
title: 'My title',
meta: [
{ content: 'my meta' }
2017-11-06 12:49:24 +00:00
],
script: [
{ src: '/body.js', body: true }
2016-12-09 17:51:19 +00:00
]
}
}
</script>