react autocomplete hint:自动完成提示的React组件 源码
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" } ] ;
用户评论