Skip to content
Sheetwrite

Sheetwrite / Documentation

SheetwriteProps@sheetwrite/vue

Simple Vue adapter props for columns and default row objects.

Simple Vue adapter props for columns and default row objects.

Members 3

columns Ordered schema used to derive the component-owned sheet.
columns: readonly SimpleColumn<Record<string, CellScalar>>[];
defaultRows Rows converted to initial columnar data; missing keys become null.
defaultRows: readonly Record<string, CellScalar>[];
sheetName Generated sheet name; defaults to Sheet 1.
sheetName?: string;

Declaration

View full TypeScript declaration
export interface SheetwriteProps extends Omit<
SheetwriteGridProps,
"workbook" | "data" | "datasource"
> {
columns: readonly SimpleColumn<Record<string, CellScalar>>[];
defaultRows: readonly Record<string, CellScalar>[];
sheetName?: string;
}