Docs Month View
The Month view is a specific type of DayGrid view called dayGridMonth. Either install via script tags or ES build system. Then initialize the calendar in JavaScript:
import { Calendar } from 'fullcalendar'
import dayGridPlugin from 'fullcalendar/daygrid'
const calendar = new Calendar(calendarEl, {
plugins: [dayGridPlugin],
initialView: 'dayGridMonth'
}); 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.