-
Notifications
You must be signed in to change notification settings - Fork 6
FAQ
nelson.li edited this page Nov 14, 2025
·
1 revision
The task name is defined as a built-in and mandatory field because it represents critical information. Therefore, a default built-in description is provided. If necessary, it can be overridden through external localization settings.
1. Define customized language settings
const customMessages = ref({ 'zh-CN': { taskName: '我的任务名称' }, 'en-US': { taskName: 'My Task Name' } })2. Load them into the GanttChart component
<template> <GanttChart :tasks="tasks" :locale-messages="customMessages" /> </template>