@fullcalendar/timegrid

Display events on time slots

@fullcalendar/timegrid downloads @fullcalendar/timegrid version @fullcalendar/timegrid license

@fullcalendar/timegrid類似パッケージ:
npmのダウンロードトレンド
3 年
🌟 @fullcalendar/timegridのREADME.mdにリアルタイム使用チャートを表示するには、以下のコードをコピーしてください。
## Usage Trend
[![Usage Trend of @fullcalendar/timegrid](https://npm-compare.com/img/npm-trend/THREE_YEARS/@fullcalendar/timegrid.png)](https://npm-compare.com/@fullcalendar/timegrid#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
🌟 @fullcalendar/timegridのREADME.mdにGitHub Starsトレンドチャートを表示するには、以下のコードをコピーしてください。
## GitHub Stars Trend
[![GitHub Stars Trend of @fullcalendar/timegrid](https://npm-compare.com/img/github-trend/@fullcalendar/timegrid.png)](https://npm-compare.com/@fullcalendar/timegrid)
統計詳細
パッケージ
ダウンロード数
Stars
サイズ
Issues
公開日時
ライセンス
@fullcalendar/timegrid885,51620,182237 kB1,0804ヶ月前MIT
@fullcalendar/timegrid のREADME

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()