首页 > 技术文章 > AntDesignVue table列最小宽度

liubingboke 2020-12-01 12:06 原文

{
      title: '任务名称',
      dataIndex: 'title',
      ellipsis: true,
      customCell: () => {
        return {
          style: {
            'min-width': '160px',
          },
        };
      },
    },

推荐阅读