1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 19:42:38 +02:00
Oinktube/node_modules/@fullcalendar/daygrid
2024-08-05 11:37:04 -03:00
..
index.cjs Add Calendar 2024-05-03 12:16:27 -03:00
index.d.ts Add Calendar 2024-05-03 12:16:27 -03:00
index.global.js Libs updates and new version with option to pin videos on channel 2024-08-05 11:37:04 -03:00
index.global.min.js Libs updates and new version with option to pin videos on channel 2024-08-05 11:37:04 -03:00
index.js Add Calendar 2024-05-03 12:16:27 -03:00
internal.cjs Add Calendar 2024-05-03 12:16:27 -03:00
internal.d.ts Add Calendar 2024-05-03 12:16:27 -03:00
internal.js Add Calendar 2024-05-03 12:16:27 -03:00
LICENSE.md Add Calendar 2024-05-03 12:16:27 -03:00
package.json Libs updates and new version with option to pin videos on channel 2024-08-05 11:37:04 -03:00
README.md Add Calendar 2024-05-03 12:16:27 -03:00

FullCalendar Day Grid Plugin

Display events on a month view or "day grid" view

Installation

Install the necessary packages:

npm install @fullcalendar/core @fullcalendar/daygrid

Usage

Instantiate a Calendar with the necessary plugin:

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

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

calendar.render()