Ant Design Vue Table 表格 表头鼠标悬浮提示简单实现方式 华超磊 2025-02-10 207 阅读1分钟 columns: [ { title: 'Name', dataIndex: 'name', key: 'name', sorter: (a, b) => a.name.localeCompare(b.name), ellipsis: true, tooltip: 'This is the Name column', }, // 其他列定义 ],