From 8ef6e7fdf2544c93f8970bea63389ff5136a1d27 Mon Sep 17 00:00:00 2001 From: lucas-granger <150461349+lucas-granger@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:23:33 +0200 Subject: [PATCH] Solving slots issue All the slots are now available --- src/components/BotUI.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/BotUI.vue b/src/components/BotUI.vue index fec9909..5e110c7 100644 --- a/src/components/BotUI.vue +++ b/src/components/BotUI.vue @@ -8,16 +8,24 @@ :bot-title="optionsMain.botTitle", @close-bot="botToggle" ) + template(v-slot:header) + slot(name="header") BoardContent( :bot-typing="botTyping", :main-data="messages" ) + template(v-slot:botTyping) + slot(name="botTyping") BoardAction( :input-disable="inputDisable", :input-placeholder="optionsMain.inputPlaceholder", :input-disable-placeholder="optionsMain.inputDisablePlaceholder", @msg-send="sendMessage" ) + template(v-slot:actions) + slot(name="actions") + template(v-slot:sendButton) + slot(name="sendButton") .qkb-bot-bubble button.qkb-bubble-btn( @click="botToggle"