You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importMobileTablefrom'@yrobot/react-mobile-table';import'@yrobot/react-mobile-table/lib/index.css';constdata=[['ID','Name','Age','Address'],// title line['1','John Brown',32,'New York No. 1 Lake Park, New York No. 1 Lake Park'],['2','Jim Green',42,'London No. 2 Lake Park, London No. 2 Lake Park'],['3','Joe Black',32,'Sidney No. 1 Lake Park, Sidney No. 1 Lake Park'],['4','Joe Green jsdkk sdkksdqww',36,'Sidney NOOOOOO'],];<MobileTabledata={data}// 数据源:[[]]columnMinWidth={60}// 每一列的最小宽度, 假设屏宽为375, 默认值60: Int// table内部点击事件回调onClick={(param)=>{const{
column,//第几列,从0开始
line,// 第几行,从0开始,包含header行
collapse,// 当前列是否折叠,boolean
event,}=param;console.log(param);}}/>;