AT-UI / at-ui

A fresh and flat UI-Kit specially for desktop application, made with ♥ by Vue.js 2.0 (DEPRECATED)
https://at.aotu.io
MIT License
2.34k stars 230 forks source link

【at-table】支持递归表头 #9

Open StevenYuysy opened 7 years ago

StevenYuysy commented 7 years ago

例如 column 里传的参数是

columns: [
  {
    title: '姓名',
    key: 'name'
  },
  {
    title: '年龄',
    key: 'age'
  },
  {
    title: '地址',
    key: 'address',
    children: [
      {
        title: '省份',
        key: 'province'
      },
      {
        title: '城市',
        key: 'city'
      }
    ]
  }
]

理论上应该可以渲染两级表格的表头。

koppthe commented 7 years ago

@StevenYuysy 好的,需求已记下,谢谢反馈~