tnt-list-item
v1.0.0
Published
react 列表组件
Downloads
2
Readme
react 列表组件
#Development npm i && npm test
#Usage
var TntListItem = require('tnt-list-item');
var React = require('react');
var ReactDOM = require('react-dom');
ReactDOM.render(<TntListItem >标题</TntListItem>, document.getElementById('app'));
#API
##props
| name | type | default | description |
| subtitle | string | | 副标题 |
| icon | string | | 图标 |
| iconSize | string | | 图标大小 以竖线分割 |
| ishidden | bool | true | 超出一行是否隐藏 |
| style | object | {} | 组件容器样式 |
| onClick | function() | | 点击事件 |
| prefixCls | string | tnt-list-item | 样式前缀用于重写样式 |
| arrow | bool | true | 是否显示右侧箭头 |