vue2.0如何使用 Ant Desig 的 table
时间: 2024-05-15 14:14:06 浏览: 72
Ant Design 是一个非常流行的UI组件库,它提供了丰富的组件,包括表格组件,可以方便快捷地实现数据展示和操作。下面是使用 Ant Design 的表格组件的基本步骤:
1. 安装 Ant Design 和其依赖:
```
npm install antd --save
npm install babel-plugin-import --save-dev
```
2. 配置 babel:
在 .babelrc 文件中添加以下代码:
```
{
"plugins": [["import", { "libraryName": "antd", "style": "css" }]]
}
```
3. 引入样式:
在 src/index.js 文件中引入 Ant Design 的样式:
```
import 'antd/dist/antd.css';
```
4. 使用表格组件:
使用 Table 组件时,需要引入 React 和 ReactDOM,并且需要定义表格的列和数据,然后将它们传递给 Table 组件。例如:
```
import React from 'react';
import ReactDOM from 'react-dom';
import { Table } from 'antd';
const columns = [
{
title: 'Name',
dataIndex: 'name',
},
{
title: 'Age',
dataIndex: 'age',
},
{
title: 'Address',
dataIndex: 'address',
},
];
const data = [
{
key: '1',
name: 'John Brown',
age: 32,
address: 'New York No. 1 Lake Park',
},
{
key: '2',
name: 'Jim Green',
age: 42,
address: 'London No. 1 Lake Park',
},
{
key: '3',
name: 'Joe Black',
age: 32,
address: 'Sidney No. 1 Lake Park',
},
];
ReactDOM.render(
<Table columns={columns} dataSource={data} />,
mountNode,
);
```
这样就可以在页面上显示一个基本的表格了。可以根据自己的需要,通过配置表格的列和数据来实现不同的功能。
阅读全文