chore(release): 3.7.0
The UI design language and React library for Conversational UI
Website:https://chatui.io
English | 简体中文
npm install @chatui/core --save
yarn add @chatui/core
import Chat, { Bubble, useMessages } from '@chatui/core'; import '@chatui/core/dist/index.css'; const App = () => { const { messages, appendMsg, setTyping } = useMessages([]); function handleSend(type, val) { if (type === 'text' && val.trim()) { appendMsg({ type: 'text', content: { text: val }, position: 'right', }); setTyping(true); setTimeout(() => { appendMsg({ type: 'text', content: { text: 'Bala bala' }, }); }, 1000); } } function renderMessageContent(msg) { const { content } = msg; return <Bubble content={content.text} />; } return ( <Chat navbar={{ title: 'Assistant' }} messages={messages} renderMessageContent={renderMessageContent} onSend={handleSend} /> ); };
cd demo npm i npm run dev
Visit Customize Theme for detail
Visit i18n for detail
MIT
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
The UI design language and React library for Conversational UI
Website:https://chatui.io
English | 简体中文
Features
Environment Support
Edge
Firefox
Chrome
Safari
iOS Safari
Android WebView
Install
Usage
Development
Theme
Visit Customize Theme for detail
Internationalization
Visit i18n for detail
License
MIT