Skip to content
Snippets Groups Projects
Commit 7afa6c9f authored by HJ's avatar HJ :fire:
Browse files

listeners aren't actually used

parent 538903f9
No related branches found
No related tags found
2 merge requests!1711Update stable - 2.5.0 release,!1385Migration to Vue 3 (again)
Pipeline #39441 passed
......@@ -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 (
......
......@@ -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 (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment