Vue
The Complete Vue Calendar Solution
Bryntum Calendar is a flexible UI component with Vue integration and first-class user and developer experience. The feature-rich Calendar offers intuitive menus and interactions that allow users to stay on track with ease.
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);