蚂蚁金服-antd-Table
文章平均质量分 75
tianxia1202
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
antd Table学习(1)
效果如下: import 'antd/dist/antd.css'; import React,{ Component } from 'react'; import { Table } from 'antd'; //import './App.css'; //dataSource 一个数组中包含好多对象,每个对象就是一组数据 const dataSource = [{ key: '1原创 2018-01-07 21:52:05 · 1705 阅读 · 0 评论 -
蚂蚁金服-antd-Table(2)
import React,{ Component} from 'react'; import { Table, Icon, Divider } from 'antd'; const { Column,ColumnGroup } = Table; const dataSource = [{ key: 1, firstName: '小小', lastName: '天下',原创 2018-01-07 23:31:38 · 1279 阅读 · 0 评论 -
蚂蚁金服(antd)-Table(3)
import React,{ Component} from 'react'; import { Table } from 'antd'; const dataSource = [{ key: '1', name: '碗碗香', age: 22, address: '北京市', action: '习惯优秀', render: text=> { tex原创 2018-01-08 00:28:03 · 1405 阅读 · 0 评论 -
蚂蚁金服antd-Table-基本用法
/** * Created by mapbar_front on 2018/1/27. */ import React,{ Component } from 'react'; import { Table,Icon,Divider } from 'antd'; const data = [{ key: 1, name: '天下', age: 18, hobb原创 2018-01-27 22:47:23 · 4592 阅读 · 0 评论 -
蚂蚁金服antd-Table-JSX风格的API
/** * Created by mapbar_front on 2018/1/28. */ import React,{ Component } from 'react'; import { Table,Icon,Divider } from 'antd'; const { Column,ColumnGroup } = Table; let data = [{ key: 1原创 2018-01-28 15:58:35 · 2152 阅读 · 1 评论 -
蚂蚁金服antd-Table-可选择
/** * Created by mapbar_front on 2018/1/28. */ import React,{ Component } from 'react'; import { Table,Icon,Divider } from 'antd'; let data = [{ key: 1, name: '花骨朵', age: 18, hobby:原创 2018-01-28 19:19:57 · 7258 阅读 · 1 评论
分享