2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-25 07: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: { components: {
Hello: { Hello: {
template: '<p>Hello</p>', template: '<p>Hello</p>',
data() { data () {
return { msg: 'Hello' } return { msg: 'Hello' }
}, },
metaInfo() { metaInfo () {
return { return {
title: `<b>${this.msg}</b>`, title: `<b>${this.msg}</b>`,
meta: [ meta: [
@@ -34,7 +34,7 @@ const vm = new Vue({
] ]
} }
}, },
created() { created () {
this.msg = 'Hi!' this.msg = 'Hi!'
} }
} }