jordium-gantt-vue3
Version:
A Vue 3 Gantt chart component for project management, task scheduling, resource planning, calendar, resource usage and timeline visualization.
27 lines (26 loc) • 935 B
TypeScript
type __VLS_Slots = {
header?: () => any;
default?: (scope: {
row: any;
$index: number;
}) => any;
};
interface Props {
prop?: string;
label?: string;
width?: number | string;
align?: 'left' | 'center' | 'right';
cssClass?: string;
/** 列固定位置,'left'/true 固定在左侧,'right' 固定在右侧 */
fixed?: 'left' | 'right' | boolean;
}
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
align: "left" | "center" | "right";
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};