Closed guisalva closed 8 months ago
Can you take a look and clear my doubt ??
<VueBotUI ... :slots="slotOptions" ... > </VueBotUI>
data: () => ({ ... botOptions: { ... }, slotOptions: { action: 'attach', }, }),
Hey @GuiSalva
I guess you can use as normal Vue 2 named slot:
<VueBotUI> <template v-slot:actions> <your attach component> </template> </VueBotUI>
Hey mate, i'm studying this lib and I am trying to add the "Attach" slot, on the action bar.
Can you take a look and clear my doubt ??