2r-stepper 中文文档教程
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
。 如果allowNegativeValues
为false
且当前值为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 to0
)stepValue
(Number): by how much we increment/decrement at once (defaults to1
)allowNegativeValues
(Boolean): whether we want our stepper to go below0
or not. The decrement button will be disabled in caseallowNegativeValues
isfalse
and either current value is0
or the difference between the current value and the step value goes below0
(defaults tofalse
)
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.
你可能也喜欢
- 605-react-date-range 中文文档教程
- 99voices_npm_authentication_client 中文文档教程
- @4tw/vue-cli-plugin-svg-icon 中文文档教程
- @5ire/typegen 中文文档教程
- @aamod2017/sigin 中文文档教程
- @abandonware/bluetooth-hci-socket 中文文档教程
- @abcwallet/packager 中文文档教程
- @abi-software/simulationvuer 中文文档教程
- @academyjs/rover 中文文档教程
- @acmeticketing/payment-sdk 中文文档教程