Find Similar Packages for @fullcalendar/list
1 Year
@fullcalendar/listSimilar Packages:
Package Weekly Downloads Trend
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
@fullcalendar/list324,88818,99668.3 kB1,0327 months agoMIT
README for @fullcalendar/list

FullCalendar List View Plugin

Display events on a calendar view that looks like a bulleted list

Installation

Install the necessary packages:

npm install @fullcalendar/core @fullcalendar/list

Usage

Instantiate a Calendar with the necessary plugin:

import { Calendar } from '@fullcalendar/core'
import listPlugin from '@fullcalendar/list'

const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
  plugins: [listPlugin],
  initialView: 'listWeek',
  events: [
    { title: 'Meeting', start: new Date() }
  ]
})

calendar.render()