ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
21 lines (17 loc) • 551 B
TypeScript
// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
import { AntdComponent } from '../component';
export declare class ColumnGroup extends AntdComponent {
/**
* Title of the column group
* @type any
*/
title: any;
/**
* When using columns, you can use this property to configure the properties that support the slot,
* such as slots: { title: 'XXX'}
* @type object
*/
slots: object;
}