Skip to content

Commit d1860b2

Browse files
committed
(fix) missing footer slots
1 parent 24ec3b0 commit d1860b2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lib/Room/Room.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,11 @@
150150
@send-message="$emit('send-message', $event)"
151151
@typing-message="$emit('typing-message', $event)"
152152
@textarea-action-handler="$emit('textarea-action-handler', $event)"
153-
/>
153+
>
154+
<template v-for="(idx, name) in $scopedSlots" #[name]="data">
155+
<slot :name="name" v-bind="data" />
156+
</template>
157+
</room-footer>
154158
</div>
155159
</template>
156160

0 commit comments

Comments
 (0)