1. 首页
  2. 移动开发
  3. 其他
  4. react use fuzzy:使用Fuse.js进行客户端模糊搜索的React Hook 源码

react use fuzzy:使用Fuse.js进行客户端模糊搜索的React Hook 源码

上传者: 2021-04-06 19:21:00上传 ZIP文件 58.62KB 热度 24次
React使用模糊 Typescript中的react挂钩,用于使用进行客户端模糊搜索。 :rocket: 安装 $ npm install --save react-use-fuzzy :balloon: 用法 import React , { useState } from 'react' ; import { useFuzzy } from 'react-use-fuzzy' ; import './App.css' ; interface Product { id : number ; name : string ; } interface ProductItemProps { product : Product ; } const ProductItem : React . FC < ProductItemProps> = ( { product } ) => { return < l
用户评论