mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-18 23:20:33 +03:00
chore: fix lint
This commit is contained in:
@@ -23,7 +23,7 @@ describe('getComponentOption', () => {
|
||||
test('calls a function option, injecting the component as context', () => {
|
||||
const component = new Vue({
|
||||
name: 'Foobar',
|
||||
someFunc() {
|
||||
someFunc () {
|
||||
return { opt: this.$options.name }
|
||||
}
|
||||
})
|
||||
@@ -90,13 +90,13 @@ describe('getComponentOption', () => {
|
||||
|
||||
localVue.component('meta-child', {
|
||||
foo: { bar: 'baz' },
|
||||
render(h) {
|
||||
render (h) {
|
||||
return h('div', this.$slots.default)
|
||||
}
|
||||
})
|
||||
|
||||
localVue.component('nometa-child', {
|
||||
render(h) {
|
||||
render (h) {
|
||||
return h('div', this.$slots.default)
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user