Skip to content

Commit

Permalink
Solving slots issue
Browse files Browse the repository at this point in the history
All the slots are now available
  • Loading branch information
lucas-granger authored Sep 17, 2024
1 parent 50e9fa7 commit 8ef6e7f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/BotUI.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 8ef6e7f

Please sign in to comment.