2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-05-21 03:57:58 +03:00
Files
vue-meta/test/components/hello-world.vue
T
pimlie 05b8891110 test: add e2e tests
fix: boolean attributes client side
2019-03-12 10:03:46 +01:00

25 lines
303 B
Vue

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