This commit is contained in:
Henry Jameson 2021-04-25 13:40:08 +03:00
parent 4b18e0f36e
commit 72956e2343
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,5 @@
// eslint-disable-next-line no-unused
import { h } from 'vue'
import isEmpty from 'lodash/isEmpty' import isEmpty from 'lodash/isEmpty'
import { getComponentProps } from '../../services/component_utils/component_utils' import { getComponentProps } from '../../services/component_utils/component_utils'
import './with_load_more.scss' import './with_load_more.scss'
@ -78,7 +80,7 @@ const withLoadMore = ({
} }
} }
}, },
render (h) { render () {
const props = { const props = {
props: { props: {
...this.$props, ...this.$props,

View file

@ -1,3 +1,5 @@
// eslint-disable-next-line no-unused
import { h } from 'vue'
import isEmpty from 'lodash/isEmpty' import isEmpty from 'lodash/isEmpty'
import { getComponentProps } from '../../services/component_utils/component_utils' import { getComponentProps } from '../../services/component_utils/component_utils'
import './with_subscription.scss' import './with_subscription.scss'
@ -58,7 +60,7 @@ const withSubscription = ({
} }
} }
}, },
render (h) { render () {
if (!this.error && !this.loading) { if (!this.error && !this.loading) {
const props = { const props = {
props: { props: {