- [ ] I have searched the [issues](https://github.com/vueComponent/ant-design-vue/issues) of this repository and believe that this is not a duplicate. ### Version 1.3.10 ### Environment macOS10.14.5, 谷歌浏览器 75.0.3770.100,vue2.6.10 ### Reproduction link [](https://codesandbox.io/s/vue-antd-template-liz94?fontsize=14) ### Steps to reproduce <!--列名title生效--> <a-table-column> <span slot="title">slot="title"</span> <template #default> <span>title文本生效的为slot="title"</span> </template> </a-table-column> <!--列名title不生效--> <a-table-column> <template #title> <span>v-slot:title</span> </template> <template v-slot:default> <span>title文本不生效的为slot="title"</span> </template> </a-table-column> ### What is expected? vue官方废弃了 slot=“title”这种使用方法,用#替代了,为什么不能支持#(v-slot:)这种写法 ### What is actually happening? vue官方废弃了 slot=“title”这种使用方法,用#替代了,为什么不能支持#(v-slot:)这种写法 <!-- generated by issue-helper. DO NOT REMOVE -->