import React from 'react' import { ListItem, Icon } from 'rcm-mobile' import { renderMobile } from 'example/utils/renderHelper' import 'example/index.scss' /** * ListItemExample 演示案例 * @author tongxiaokang * @version 0.0.1 */ export default class Example extends React.PureComponent { state = { arrow: 'right' as any } render() { return (

ListItem 演示

普通使用

请选择

arrow 参数

this.setState((state: any) => ({ arrow: state.arrow === 'bottom' ? 'right' : 'bottom' }))} />

ListItem.Brief 静态方法

标题 追加描述内容
}> 请选择

disabled 参数

alert('点击事件')} />

thumb 参数

} />

wrap 参数

activeStyle & activeClassName 参数

) } } renderMobile(Example)