Alessandro Macagno
Alessandro Macagno
Hey! Is there an update on this? We could really use this very much!
Any news on this? I am currently trying to include BotUI in a nuxt project and nothing seems to work.
Working solution: ``` import vue from 'vue' import Botui from 'botui' export default { data() { return { botui: '' } }, async mounted() { await this.$nextTick() this.botui = new...
@razorabhu1995 Yes it works for me, as in my previous example. The secret is to wrap bot-ui tag in no-ssr and wait for this.$nextTick() before new Botui. If you need...
Hello! I'm interested in uploading a file during the conversation. Can I?
Hello, I came up with a custom working solution. ``` return botui.action.text({ action: { sub_type: "file", cssClass: 'file-upload', autoHide: false, button: { icon: 'chevron-circle-right', label: ' ' } } });...
I found out a little bug related to this thread and the el.scrollIntoView(true), but I'm not sure if without it would be ok. If you have some stuff below the...
Same issue here, is there any solution?
@LubosD can you share the code please? I tried and I didn't manage to make it work