2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-16 09:40:34 +03:00

fix: Lint

This commit is contained in:
Atinux
2017-12-07 13:31:46 +01:00
parent 07e014b065
commit 4bc5618328
+3 -3
View File
@@ -23,10 +23,10 @@ const vm = new Vue({
components: {
Hello: {
template: '<p>Hello</p>',
data() {
data () {
return { msg: 'Hello' }
},
metaInfo() {
metaInfo () {
return {
title: `<b>${this.msg}</b>`,
meta: [
@@ -34,7 +34,7 @@ const vm = new Vue({
]
}
},
created() {
created () {
this.msg = 'Hi!'
}
}