dockview-vue
Version:
Zero dependency layout manager supporting tabs, grids and splitviews
13 lines (12 loc) • 431 B
TypeScript
import { type DockviewOptions, type DockviewReadyEvent } from 'dockview-core';
export interface VueProps {
watermarkComponent?: string;
defaultTabComponent?: string;
rightHeaderActionsComponent?: string;
leftHeaderActionsComponent?: string;
prefixHeaderActionsComponent?: string;
}
export type VueEvents = {
ready: [event: DockviewReadyEvent];
};
export type IDockviewVueProps = DockviewOptions & VueProps;