fullcalendar

Easily render a full-sized drag & drop calendar with a combination of standard plugins

fullcalendar downloads fullcalendar version fullcalendar license

fullcalendar유사 패키지:
npm 다운로드 트렌드
3 년
🌟 fullcalendar의 README.md에 실시간 사용 차트를 표시하려면 아래 코드를 복사하세요.
## Usage Trend
[![Usage Trend of fullcalendar](https://npm-compare.com/img/npm-trend/THREE_YEARS/fullcalendar.png)](https://npm-compare.com/fullcalendar#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
🌟 fullcalendar의 README.md에 GitHub Stars 트렌드 차트를 표시하려면 아래 코드를 복사하세요.
## GitHub Stars Trend
[![GitHub Stars Trend of fullcalendar](https://npm-compare.com/img/github-trend/fullcalendar.png)](https://npm-compare.com/fullcalendar)
통계 세부사항
패키지
다운로드
Stars
크기
Issues
발행일
라이선스
fullcalendar186,87720,057990 kB1,0763ヶ月前MIT
fullcalendar의 README

FullCalendar Standard Bundle

Easily render a full-sized drag & drop calendar with a combination of standard plugins

This fullcalendar package bundles these plugins:

Usage with CDN or ZIP archive

Load the index.global.min.js file and use the FullCalendar global namespace:

<!DOCTYPE html>
<html>
  <head>
    <script src='https://cdn.jsdelivr.net/npm/fullcalendar/index.global.min.js'></script>
    <script>

      document.addEventListener('DOMContentLoaded', function() {
        const calendarEl = document.getElementById('calendar')
        const calendar = new FullCalendar.Calendar(calendarEl, {
          initialView: 'dayGridMonth'
        })
        calendar.render()
      })

    </script>
  </head>
  <body>
    <div id='calendar'></div>
  </body>
</html>

Usage with NPM and ES modules

npm install fullcalendar
import { Calendar } from 'fullcalendar'

document.addEventListener('DOMContentLoaded', function() {
  const calendarEl = document.getElementById('calendar')
  const calendar = new Calendar(calendarEl, {
    initialView: 'dayGridMonth'
  })
  calendar.render()
})