arshaw b0c1d6c612 RELEASING: Releasing 33 package(s) 1 lună în urmă
..
src 229b88d3e0 move globalLocales and globalPlugins to public (not internal). fixes #7057 3 ani în urmă
.eslintrc.cjs 613ab5765f Adjust pkg names to @fullcalenadar-tests/*, @fullcalenadar-scripts/*, and @fullcalenadar-monorepos/* 1 an în urmă
README.md 8c93f35738 updated readmes 3 ani în urmă
package.json b0c1d6c612 RELEASING: Releasing 33 package(s) 1 lună în urmă

README.md

FullCalendar Google Calendar Plugin

Display events from a public Google Calendar feed

Installation

Install the FullCalendar core package, the Google Calendar plugin, and any other plugins (like daygrid):

npm install @fullcalendar/core @fullcalendar/google-calendar @fullcalendar/daygrid

Usage

Instantiate a Calendar with the necessary plugin:

import { Calendar } from '@fullcalendar/core'
import googleCalendarPlugin from '@fullcalendar/google-calendar'
import dayGridPlugin from '@fullcalendar/daygrid'

const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
  plugins: [
    googleCalendarPlugin,
    dayGridPlugin
  ],
  initialView: 'dayGridMonth',
  events: {
    googleCalendarId: '[email protected]'
  }
})

calendar.render()