mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-07 12:42:25 +03:00
chore: lint examples
This commit is contained in:
@@ -5,11 +5,16 @@ Vue.use(VueMeta)
|
||||
|
||||
Vue.component('child', {
|
||||
name: 'Child',
|
||||
props: ['page'],
|
||||
render (h) {
|
||||
props: {
|
||||
page: {
|
||||
type: String,
|
||||
default: ''
|
||||
}
|
||||
},
|
||||
render(h) {
|
||||
return h('h3', null, this.page)
|
||||
},
|
||||
metaInfo () {
|
||||
metaInfo() {
|
||||
return {
|
||||
title: this.page
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user