UNPKG

cjd-parkball

Version:

> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用

26 lines (23 loc) 429 B
--- title: 多选项开关的基本用法 title_en: normal usage for multi switch component category: 2 --- 展示了一个表格组件的基本用法 ```jsx import MultiSwitch from '../index' const dataSource = [{ name: '一小时', }, { name: '一周', }, { name: '一个月', }] ReactDOM.render( <MultiSwitch dataSource={dataSource} onSwitch={(index, target) => {console.log(index)}} />, mountNode ) ```