diff --git a/src/hocs/with_load_more/with_load_more.js b/src/hocs/with_load_more/with_load_more.js
index e9265d2a..e862a39b 100644
--- a/src/hocs/with_load_more/with_load_more.js
+++ b/src/hocs/with_load_more/with_load_more.js
@@ -21,7 +21,7 @@ const withLoadMore = ({
on: this.$listeners,
scopedSlots: this.$scopedSlots
}
- const children = Object.keys(this.$slots).map(slot => createElement('template', { slot }, this.$slots[slot]))
+ const children = Object.entries(this.$slots).map(([key, value]) => createElement('template', { slot: key }, value))
return (
diff --git a/src/hocs/with_subscription/with_subscription.js b/src/hocs/with_subscription/with_subscription.js
index 42ede7be..1ac67cba 100644
--- a/src/hocs/with_subscription/with_subscription.js
+++ b/src/hocs/with_subscription/with_subscription.js
@@ -27,7 +27,7 @@ const withSubscription = ({
on: this.$listeners,
scopedSlots: this.$scopedSlots
}
- const children = Object.keys(this.$slots).map(slot => createElement('template', { slot }, this.$slots[slot]))
+ const children = Object.entries(this.$slots).map(([key, value]) => createElement('template', { slot: key }, value))
return (