forked from AkkomaGang/akkoma-fe
mutes and blocks tab works
This commit is contained in:
parent
b3ed29ff02
commit
5948d20f00
1 changed files with 4 additions and 7 deletions
|
@ -63,14 +63,11 @@ const withSubscription = ({
|
|||
render () {
|
||||
if (!this.error && !this.loading) {
|
||||
const props = {
|
||||
props: {
|
||||
...this.$props,
|
||||
[childPropName]: this.fetchedData
|
||||
},
|
||||
on: this.$listeners,
|
||||
scopedSlots: this.$scopedSlots
|
||||
// on: this.$listeners // TODO
|
||||
}
|
||||
const children = Object.entries(this.$slots).map(([key, value]) => h('template', { slot: key }, value))
|
||||
const children = this.$slots
|
||||
return (
|
||||
<div class="with-subscription">
|
||||
<WrappedComponent {...props}>
|
||||
|
|
Loading…
Reference in a new issue