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:
+3
-3
@@ -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!'
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user