mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-25 02:50:33 +03:00
fix: Lint
This commit is contained in:
+3
-3
@@ -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!'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user