qh-ai-chat
v1.0.0
Published
本项目依赖promise,如果需要在不支持promise的浏览器中使用,请安装polyfill 本项目仅在浏览器端可以运行
Downloads
1
Readme
潜海AI聊天框组件
本项目依赖promise,如果需要在不支持promise的浏览器中使用,请安装polyfill 本项目仅在浏览器端可以运行
使用步骤
npm install qh-ai-chat
vite框架可能不会识别自定义元素,请在import QhAiChat from 'qh-ai-chat' customElements.define("qh-ai-chat", QhAiChat);
vite.config.js
中添加如下代码:
如果是通过script标签引入需要引入axios库export default defineConfig({ plugins: [vue({ template: { compilerOptions: { isCustomElement: tag => tag.startsWith('qh-') } } })], })
<script src="https://unpkg.com/axios/dist/axios.min.js"></script> <script src="./qh-ai-chat.min.js"></script>