Bootstrap 4 theme for FullCalendar
For Bootstrap 5, use the @fullcalendar/bootstrap5 package
First, ensure the necessary Bootstrap packages are installed:
npm install bootstrap@4 @fortawesome/fontawesome-free
Then, install the FullCalendar core package, the Bootstrap plugin, and any other plugins (like daygrid):
npm install @fullcalendar/core @fullcalendar/bootstrap @fullcalendar/daygrid
Instantiate a Calendar with the necessary plugins and options:
import { Calendar } from '@fullcalendar/core'
import bootstrapPlugin from '@fullcalendar/bootstrap'
import dayGridPlugin from '@fullcalendar/daygrid'
// import third-party stylesheets directly from your JS
import 'bootstrap/dist/css/bootstrap.css'
import '@fortawesome/fontawesome-free/css/all.css' // needs additional webpack config!
const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
plugins: [
bootstrapPlugin,
dayGridPlugin
],
themeSystem: 'bootstrap', // important!
initialView: 'dayGridMonth'
})
calendar.render()