ant design vue 设定table的宽度
时间: 2023-07-10 20:34:27 浏览: 119
您好!如果您使用的是 Ant Design Vue 的 Table 组件,您可以通过设置 `width` 属性来设定表格的宽度。例如:
```html
<template>
<a-table :columns="columns" :data-source="data" :scroll="{ x: 1200 }"></a-table>
</template>
<script>
export default {
data() {
return {
columns: [
{
title: 'Name',
dataIndex: 'name',
width: 200,
},
{
title: 'Age',
dataIndex: 'age',
width: 100,
},
{
title: 'Address',
dataIndex: 'address',
width: 400,
},
],
data: [
{
key: '1',
name: 'John Brown',
age: 32,
address: 'New York No. 1 Lake Park, New York',
},
{
key: '2',
name: 'Jim Green',
age: 42,
address: 'London No. 1 Lake Park, London',
},
{
key: '3',
name: 'Joe Black',
age: 32,
address: 'Sidney No. 1 Lake Park, Sidney',
},
],
};
},
};
</script>
```
在上面的例子中,我们通过在列定义中设置 `width` 属性来控制每一列的宽度,并通过 `scroll` 属性来设置表格的横向滚动,以适应所有列的宽度。您可以根据实际需求来调整这些属性的值。
阅读全文