mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
10 lines
215 B
Vue
10 lines
215 B
Vue
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
compatConfig: { MODE: 3 },
|
|
name: 'ATableSummaryRow',
|
|
setup(_props, { slots }) {
|
|
return () => <tr>{slots.default?.()}</tr>;
|
|
},
|
|
});
|