Fixed #1836 - For Row
parent
2b3e3010bf
commit
889b4a0614
|
@ -1,7 +1,29 @@
|
||||||
interface RowProps {}
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||||
|
|
||||||
declare class Row {
|
export interface RowProps {
|
||||||
$props: RowProps;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface RowSlots {
|
||||||
|
}
|
||||||
|
|
||||||
|
export declare type RowEmits = {
|
||||||
|
}
|
||||||
|
|
||||||
|
declare class Row extends ClassComponent<RowProps, RowSlots, RowEmits> { }
|
||||||
|
|
||||||
|
declare module '@vue/runtime-core' {
|
||||||
|
interface GlobalComponents {
|
||||||
|
Row: GlobalComponentConstructor<Row>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Row is a helper component to create column group.
|
||||||
|
*
|
||||||
|
* Demos:
|
||||||
|
*
|
||||||
|
* - [DataTable](https://www.primefaces.org/primevue/showcase/#/datatable/colgroup)
|
||||||
|
*
|
||||||
|
*/
|
||||||
export default Row;
|
export default Row;
|
||||||
|
|
Loading…
Reference in New Issue