mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
17 lines
196 B
Vue
Executable File
17 lines
196 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>
|