What problem does this feature solve?
template 风格使用 slots: { customRender: 'XXX'}
What does the proposed API look like?
template 风格使用 slots: { customRender: 'XXX'}
<a-table> <a-table-column title="日期1" align="center" :width="120" data-index="doc_dt1" :slots="{ customRender: 'formateDate' }" /> <a-table-column title="日期2" align="center" :width="120" data-index="doc_dt2" :slots="{ customRender: 'formateDate' }" /> <span slot="formateDate" slot-scope="text">{ text }</span> </a-table>