1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 10:49:36 +02:00
Oinktube/node_modules/@fullcalendar/timegrid
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 Libs updates and new version with option to pin videos on channel 2024-08-05 11:37:04 -03:00
internal.d.ts Add Calendar 2024-05-03 12:16:27 -03:00
internal.js Libs updates and new version with option to pin videos on channel 2024-08-05 11:37:04 -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 Time Grid Plugin

Display events on time slots

Installation

Install the necessary packages:

npm install @fullcalendar/core @fullcalendar/timegrid

Usage

Instantiate a Calendar with the necessary plugin:

import { Calendar } from '@fullcalendar/core'
import timeGridPlugin from '@fullcalendar/timegrid'

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

calendar.render()