2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-05 05:12:25 +03:00

test: add tests for new functionalities

This commit is contained in:
pimlie
2019-09-13 18:05:07 +02:00
committed by Pim
parent c1b01b991f
commit a2f0e7df3c
10 changed files with 275 additions and 31 deletions
+6 -6
View File
@@ -6,12 +6,7 @@
export default {
metaInfo() {
return {
title: this.title
}
},
data() {
return {
title: 'Hello World',
title: this.title,
htmlAttrs: {
lang: 'en'
},
@@ -19,6 +14,11 @@ export default {
{ charset: 'utf-8' }
]
}
},
data() {
return {
title: 'Hello World',
}
}
}
</script>