4leaf-hooks-useinput 中文文档教程

发布于 3年前 浏览 34 项目主页 更新于 3年前

4leaf-hooks-useinput

React Hooks 实时改变输入值

installation

  • yarn

   yarn add 4leaf-hooks-useinput
  
  • npm

   npm install 4leaf-hooks-useinput
  

Usage

import React from "react";
import useInput from "4leaf-hooks-useinput";

const App = () => {

  const formId = useInput(``);

  // If you change the value
  formId.setValue("New Value Here!");

  return <form>
    <div>
        <label> ID </label>
        <input type="text" {...formId}/>
    </div>
  <form>
  ;
}

Arguments

ArgumentTypeDescriptionRequired
StringStringAuto Setting Value and onChange with setValueYES

4leaf-hooks-useinput

React Hooks to realtime change input value

installation

  • yarn

   yarn add 4leaf-hooks-useinput
  
  • npm

   npm install 4leaf-hooks-useinput
  

Usage

import React from "react";
import useInput from "4leaf-hooks-useinput";

const App = () => {

  const formId = useInput(``);

  // If you change the value
  formId.setValue("New Value Here!");

  return <form>
    <div>
        <label> ID </label>
        <input type="text" {...formId}/>
    </div>
  <form>
  ;
}

Arguments

ArgumentTypeDescriptionRequired
StringStringAuto Setting Value and onChange with setValueYES
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文