1. 首页
  2. 数据库
  3. 其它
  4. react autocomplete hint:自动完成提示的React组件 源码

react autocomplete hint:自动完成提示的React组件 源码

上传者: 2021-05-05 09:21:33上传 ZIP文件 410.08KB 热度 32次
React自动完成提示 自动完成提示的React组件。 演示版 演示可以在这里找到: : 安装 npm install --save react-autocomplete-hint 或者 yarn add react-autocomplete-hint 用法 import { Hint } from 'react-autocomplete-hint' ; const options = [ "orange" , "banana" , "apple" ] ; // OR const options = [ { id : 1 , label : "orange" } , { id : '2' , label : "banana" } , { id : 3 , label : "apple" } ] ;
用户评论