UNPKG

@syncfusion/ej2-vue-grids

Version:

Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Vue

23 lines (22 loc) 626 B
export declare let ColumnsDirective: any; export declare const ColumnsPlugin: { name: string; install(Vue: any): void; }; /** * `e-column` directive represent a column of the VueJS Grid. * It must be contained in a Grid component(`ejs-grid`). * ```vue * <ejs-grid :dataSource='data' allowPaging='true' allowSorting='true'> * <e-columns> * <e-column field='ID' width='100'/> * <e-column field='name' headerText='Name' width='100'/> * </e-columns> * </ejs-grid> * ``` */ export declare let ColumnDirective: any; export declare const ColumnPlugin: { name: string; install(Vue: any): void; };