2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-07 15:52:25 +03:00
Files
vue-meta/test/components/hello-world.vue
T
2019-09-17 13:55:29 +02:00

25 lines
304 B
Vue

<template>
<div>Test</div>
</template>
<script>
export default {
metaInfo() {
return {
title: this.title,
htmlAttrs: {
lang: 'en'
},
meta: [
{ charset: 'utf-8' }
]
}
},
data() {
return {
title: 'Hello World',
}
}
}
</script>