import Vue from 'vue' import reject from 'lodash/reject' import isEmpty from 'lodash/isEmpty' import omit from 'lodash/omit' import './with_subscription.scss' const withSubscription = ({ fetch, select, contentPropName = 'content' }) => (WrapperComponent) => { const originalProps = WrapperComponent.props || [] const props = reject(originalProps, v => v === 'content') return Vue.component('withSubscription', { render (createElement) { const props = { props: { ...omit(this.$props, 'refresh'), [contentPropName]: this.fetchedData }, on: this.$listeners } return (