remove Vue.component, just export an object. Seems to be working

This commit is contained in:
Henry Jameson 2021-04-25 12:46:13 +03:00
parent 509ec99574
commit 1f5f612163
2 changed files with 4 additions and 6 deletions

View file

@ -1,4 +1,3 @@
import Vue from 'vue'
import isEmpty from 'lodash/isEmpty'
import { getComponentProps } from '../../services/component_utils/component_utils'
import './with_load_more.scss'
@ -23,7 +22,7 @@ const withLoadMore = ({
const originalProps = Object.keys(getComponentProps(WrappedComponent))
const props = originalProps.filter(v => v !== childPropName).concat(additionalPropNames)
return Vue.component('withLoadMore', {
return {
props,
data () {
return {
@ -106,7 +105,7 @@ const withLoadMore = ({
</div>
)
}
})
}
}
export default withLoadMore