Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

index-sidebar

luobotang25MIT0.1.1

index sidebar

index, sidebar

readme

index-sidebar

A sidebar component with chars as index.

DEMO

Usage

Install:

npm i index-sidebar

Require it in your code:

var IndexSidebar = require('index-sidebar')

var sidebar = new IndexSidebar()
sidebar.on('charChange', function (ch) {
  console.log(ch)
})

Or in your HTML include the script file:

<script src="index-sidebar/index.js"></script>
<script>
var sidebar = new IndexSidebar()
sidebar.on('charChange', function (ch) {
  console.log(ch)
})
</script>

How I build this component?

I have wrote a blog about this.