jordium-gantt-vue3
Version:
A Vue 3 Gantt chart component for project management, task scheduling, resource planning, calendar, resource usage and timeline visualization.
23 lines (22 loc) • 807 B
TypeScript
interface AssigneeOption {
key?: string | number;
value: string | number;
label: string;
avatar?: string;
type?: string;
}
interface Props {
modelValue?: string | number;
options?: AssigneeOption[];
placeholder?: string;
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (value: string | number) => any;
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
}>, {
placeholder: string;
modelValue: string | number;
options: AssigneeOption[];
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;