remove Vue.component from hooks

This commit is contained in:
Henry Jameson 2021-04-25 12:50:17 +03:00
parent 1f5f612163
commit 76a2e6befb
2 changed files with 3 additions and 4 deletions

View file

@ -38,7 +38,7 @@ const withLoadMore = ({
this.fetchEntries()
}
},
destroyed () {
unmounted () {
window.removeEventListener('scroll', this.scrollLoad)
destroy && destroy(this.$props, this.$store)
},

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_subscription.scss'
@ -22,7 +21,7 @@ const withSubscription = ({
const originalProps = Object.keys(getComponentProps(WrappedComponent))
const props = originalProps.filter(v => v !== childPropName).concat(additionalPropNames)
return Vue.component('withSubscription', {
return {
props: [
...props,
'refresh' // boolean saying to force-fetch data whenever created
@ -88,7 +87,7 @@ const withSubscription = ({
)
}
}
})
}
}
export default withSubscription