2r-stepper 中文文档教程

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

2r-stepper

在 React 中实现的 2R 库步进器组件。

Instalation

2r-stepper 可作为 npm 包使用。 只需运行 npm install 2r-stepper 命令。

在您的项目中使用它:

import stepper from '2r-stepper'; // ES6 syntax
var stepper = require('2r-stepper'); // ES5 syntax

Usage & API

可以将以下道具传递给组件:

  • initialValue(数字):步进器将以什么值开始(默认为 0

  • stepValue(数字):我们一次递增/递减多少(默认为 1

  • allowNegativeValues(布尔值):我们是否希望步进器运行是否低于 0。 如果 allowNegativeValuesfalse 且当前值为 0 或当前值与步长值之间的差值变为0 下方(默认为 false

Examples

项目中有一个示例文件夹,配置最少。 运行步骤:

  • 克隆项目并

  • 运行 npm install

  • 运行 gulp examples

  • 导航到 http://localhost:5000

License

本软件发布于WTFPL v2.0 许可证的条款。

2r-stepper

2R library stepper component implemented in React.

Instalation

2r-stepper is available as an npm package. Simply run npm install 2r-stepper command.

To use it in your project:

import stepper from '2r-stepper'; // ES6 syntax
var stepper = require('2r-stepper'); // ES5 syntax

Usage & API

The following props can be passed to the component:

  • initialValue (Number): at what value will the stepper start (defaults to 0)

  • stepValue (Number): by how much we increment/decrement at once (defaults to 1)

  • allowNegativeValues (Boolean): whether we want our stepper to go below 0 or not. The decrement button will be disabled in case allowNegativeValues is false and either current value is 0 or the difference between the current value and the step value goes below 0 (defaults to false)

Examples

There is an examples folder inside the project with a minimum config. Steps to run:

  • Clone the project and

  • Run npm install

  • Run gulp examples

  • Navigate to http://localhost:5000

License

This software is released under the terms of WTFPL v2.0 license.

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