remove Vue.component from hooks
This commit is contained in:
parent
1f5f612163
commit
76a2e6befb
2 changed files with 3 additions and 4 deletions
src/hocs/with_subscription
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue