38 lines
931 B
JavaScript
38 lines
931 B
JavaScript
|
/* eslint-disable no-console,func-names,react/no-multi-comp */
|
||
|
import Table from '../index'
|
||
|
import '../assets/index.less'
|
||
|
|
||
|
const columns = [
|
||
|
{ title: 'title1', dataIndex: 'a', key: 'a', width: 100 },
|
||
|
{ id: '123', title: 'title2', dataIndex: 'b', key: 'b', width: 100 },
|
||
|
{ title: 'title3', dataIndex: 'c', key: 'c', width: 200 },
|
||
|
{
|
||
|
title: 'Operations', dataIndex: '', key: 'd', render (h) {
|
||
|
return <a href='#'>Operations</a>
|
||
|
},
|
||
|
},
|
||
|
]
|
||
|
|
||
|
const data = [
|
||
|
{ a: '123', key: '1' },
|
||
|
{ a: 'cdd', b: 'edd', key: '2' },
|
||
|
{ a: '1333', c: 'eee', d: 2, key: '3' },
|
||
|
]
|
||
|
|
||
|
export default {
|
||
|
render () {
|
||
|
return (
|
||
|
<div>
|
||
|
<h2>title and footer</h2>
|
||
|
<Table
|
||
|
columns={columns}
|
||
|
data={data}
|
||
|
title={currentData => <div>Title: {currentData.length} items</div>}
|
||
|
footer={currentData => <div>Footer: {currentData.length} items</div>}
|
||
|
/>
|
||
|
</div>
|
||
|
)
|
||
|
},
|
||
|
}
|
||
|
|