Vue
The complete Calendar solution
Bryntum Calendar is a flexible UI component for Vue with great user and developer experience. Quickly set up a beautiful, full-featured calendar with day, week, month, year, and agenda views.
Get started with the Vue Calendar library
The high-performance Calendar component for Vue
Instantly and reliably load large datasets with many resources and tasks. Designed for optimal performance, Bryntum Vue Calendar is scalable and efficient.
A Vue Calendar with TypeScript Integration
Bryntum bundles include typings for classes, making them compatible with TypeScript applications.
The example code shows the creation of a tree store using the Bryntum Calendar library.
import { Store, StoreConfig, ModelConfig } from '@bryntum/calendar';
const storeConfig: Partial = {
tree: true,
data : [
{
id: 1,
children : [
{
id: 2
}
] as Partial[]
}
] as Partial[]
};
new Store(storeConfig);