smart-compose-react
v0.1.3
Published
输入字符可以智能提醒,按一下 Tab 键位就可以快速输入智能提醒内容
Downloads
2
Maintainers
Readme
SmartCompose
输入字符可以智能提醒,按一下 Tab 键位就可以快速输入智能提醒内容
npm i smart-compose-react
使用
import { SmartCompose } from 'smart-compose-react'
<SmartCompose
onChange={(value) => {
getTip(value)
}}
suggestion={suggestion}
sugStyle={yourStyle}
>
<Fragment>
<div contentEditable suppressContentEditableWarning>
content
</div>
<textarea name="textarea1" cols={30} rows={10}></textarea>
<CustomEditor />
</Fragment>
</SmartCompose>