Quick Start

Welcome to our documentation! This guide should help you get started quickly with Vantepo Scheduler.

Installation

Install Vantepo using your preferred package manager:

# npm
npm install @vantepo/scheduler

# yarn
yarn add @vantepo/scheduler

# pnpm
pnpm add @vantepo/scheduler

Basic Usage

Here’s a simple example to get you started:

import { Scheduler } from '@vantepo/scheduler';

const scheduler = new Scheduler({
  target: '#app',
  data: [
    { id: 1, name: 'John', email: 'john@example.com' },
    { id: 2, name: 'Jane', email: 'jane@example.com' },
  ],
  columns: ['id', 'name', 'email'],
});

What’s Next?

Now that you have the basics working, explore these topics:

Need Help?