ai-web-ui
v1.1.2
Published
``` vue2 npm install ai-web-ui 导入ai-web-ui import { aiXiaoYun } from "ai-web-ui"; 导入组件样式 import "ai-web-ui/style.css"; ```
Downloads
2
Readme
这是一个 AI 聊天机器人
联系作者:梦玉 [email protected]
使用方法
vue2下载依赖
npm install ai-web-ui
导入ai-web-ui
import { aiXiaoYun } from "ai-web-ui";
导入组件样式
import "ai-web-ui/index.css";
组件使用
1.注册组件
components: { aiXiaoYun },
1.组件初始化
<aiXiaoYun :aiProps="aiProps" @update:data="updateData" />
2.组件参数说明
props: {
aiProps: {
dataList: [], // 历史数据回显
apiParams: {}, // 脚本获取内容接口
setRouteStr: "菜单切换到", // 通过小云文案或者语音自动切换页面
pluginHandleMethod: null, // 插件处理逻辑方法 可不传
},
},
3.组件方法说明
methods: { // 更新数据
updateData(data) {
console.log(data);
}
}