liujing-vue-chatbot
v1.0.2
Published
A Vue 3 chatbot widget component
Readme
vue-chatbot
一个 Vue 3 智能客服插件,支持 GPT 接口示例。
安装
npm install liujing-vue-chatbot
使用
import { createApp } from 'vue' import App from './App.vue' import Chatbot from 'liujing-vue-chatbot' import 'liujing-vue-chatbot/dist/style.css';
const app = createApp(App)
// 使用默认配置(参数可选) app.use(Chatbot)
app.mount('#app')
// 或者覆盖默认配置(传入 options) // 注:传入的字段会与内部默认配置合并 app.use(Chatbot, { title: '小智客服', themeColor: '#42b883', onUserMessage: async (text) => { if (text.includes('价格')) return '我们的产品价格在 99~199 元之间' return '模拟客服回复: ' + text } })
