0.1.3 • Published 3 months ago

smart-compose-react v0.1.3

Weekly downloads
-
License
-
Repository
-
Last release
3 months ago

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>