Skip to content

YanYuanFE/react-indexlist

Repository files navigation

react-indexlist

Description

Indexlist component based better-scroll for react。

Quick Start

Install

npm install react-indexlist --save

or yarn add react-indexlist

Usage

import IndexList from 'react-indexlist';
import 'react-indexlist/dist/index.css';
handleSelect = (item) => {
    console.log(item);
}

<IndexList data={arr} onSelect={this.handleSelect} className="my-indexlist" />

Example

indexlist

indexlist

indexlist

Prop types

propTypes: {

    // className of component
    className: PropTypes.string,

    // Array of list
    data: PropTypes.array.isRequired, // Default: Array<{ title: string, items: array<{ name: string }> }>

    // render item by self, return ReactNode
    renderItem: PropTypes.func, // function (item)

    // onClick item callback
    onSelect: PropTypes.func, // function (item)
}

License

MIT

About

🎿Indexlist component based better-scroll for react

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published