forked from AkkomaGang/akkoma-fe
listeners aren't actually used
This commit is contained in:
parent
538903f9d8
commit
7afa6c9f40
2 changed files with 2 additions and 2 deletions
|
@ -81,10 +81,10 @@ const withLoadMore = ({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
render () {
|
render () {
|
||||||
|
console.log(this.$listeners)
|
||||||
const props = {
|
const props = {
|
||||||
...this.$props,
|
...this.$props,
|
||||||
[childPropName]: this.entries
|
[childPropName]: this.entries
|
||||||
// on: this.$listeners // TODO fix listeners
|
|
||||||
}
|
}
|
||||||
const children = this.$slots
|
const children = this.$slots
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -61,11 +61,11 @@ const withSubscription = ({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
render () {
|
render () {
|
||||||
|
console.log(this.$listeners)
|
||||||
if (!this.error && !this.loading) {
|
if (!this.error && !this.loading) {
|
||||||
const props = {
|
const props = {
|
||||||
...this.$props,
|
...this.$props,
|
||||||
[childPropName]: this.fetchedData
|
[childPropName]: this.fetchedData
|
||||||
// on: this.$listeners // TODO
|
|
||||||
}
|
}
|
||||||
const children = this.$slots
|
const children = this.$slots
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue