@bubblav/ai-chatbot-vue
v1.0.3
Published
BubblaV AI chatbot widget for Vue applications
Maintainers
Readme
@bubblav/ai-chatbot-vue
Official Vue 3 package for the BubblaV AI chatbot widget.
Installation
npm install @bubblav/ai-chatbot-vueUsage
<script setup>
import { BubblaVWidget } from '@bubblav/ai-chatbot-vue';
</script>
<template>
<BubblaVWidget website-id="your-website-id" />
</template>Get your website-id from the BubblaV dashboard.
Programmatic control
<script setup>
import { useBubblaVWidget } from '@bubblav/ai-chatbot-vue';
const widget = useBubblaVWidget();
</script>
<template>
<button @click="widget?.open()">Chat with us</button>
</template>Documentation
Full guide: docs.bubblav.com/user-guide/installation
