listeners aren't actually used

This commit is contained in:
Henry Jameson 2022-03-22 20:22:28 +02:00
parent 538903f9d8
commit 7afa6c9f40
2 changed files with 2 additions and 2 deletions

View File

@ -81,10 +81,10 @@ const withLoadMore = ({
}
},
render () {
console.log(this.$listeners)
const props = {
...this.$props,
[childPropName]: this.entries
// on: this.$listeners // TODO fix listeners
}
const children = this.$slots
return (

View File

@ -61,11 +61,11 @@ const withSubscription = ({
}
},
render () {
console.log(this.$listeners)
if (!this.error && !this.loading) {
const props = {
...this.$props,
[childPropName]: this.fetchedData
// on: this.$listeners // TODO
}
const children = this.$slots
return (