edit doc

Docs Month View

The Month view is a specific type of DayGrid view called dayGridMonth. Either install via script tags or individual packages like so:

npm install --save \
  @fullcalendar/core \
  @fullcalendar/daygrid

Then initialize the calendar in JavaScript:

import { Calendar } from '@fullcalendar/core'
import dayGridPlugin from '@fullcalendar/daygrid'

const calendar = new Calendar(calendarEl, {
  plugins: [dayGridPlugin],
  initialView: 'dayGridMonth'
});

View a demo ยป

There are numerous other options throughout the docs that affect the display of DayGrid view, such as the date/time display options and locale-related options.