antdesign vue 2 表格动态scroll
时间: 2023-10-09 16:16:18 浏览: 96
动态表格
您可以使用Ant Design Vue 2的Table组件,并使用scroll属性来实现表格的动态滚动。以下是示例代码:
```html
<template>
<a-table :columns="columns" :data-source="data" :scroll="{ y: 400 }"></a-table>
</template>
<script>
export default {
data() {
return {
columns: [
{
title: 'Name',
dataIndex: 'name',
key: 'name',
},
{
title: 'Age',
dataIndex: 'age',
key: 'age',
},
{
title: 'Address',
dataIndex: 'address',
key: 'address',
},
],
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',
},
...
],
};
},
};
</script>
```
在示例中,我们将表格的高度设置为400px,并将其应用于scroll属性。这使表格在超过400px高度时出现纵向滚动条。您可以根据需要调整scroll属性的值。
阅读全文