activeTask
Description
Usage
activeTask?: number | string;
Parameters
activeTask- the ID of an active task (for which the Editor dialog opens at the initialization)
Example
<script setup>
import { getData } from "../data";
import { Gantt } from "@svar-ui/vue-gantt";
const data = getData();
</script>
<template>
<Gantt :tasks="data.tasks" :activeTask="4" />
</template>