arshaw 70fa10a67c RELEASING: Releasing 33 package(s) 1 年之前
..
src 7c5e3b079d fix broken styling in vite 2 年之前
.eslintrc.cjs 613ab5765f Adjust pkg names to @fullcalenadar-tests/*, @fullcalenadar-scripts/*, and @fullcalenadar-monorepos/* 1 年之前
README.md 8c93f35738 updated readmes 3 年之前
package.json 70fa10a67c RELEASING: Releasing 33 package(s) 1 年之前

README.md

FullCalendar List View Plugin

Display events on a calendar view that looks like a bulleted list

Installation

Install the necessary packages:

npm install @fullcalendar/core @fullcalendar/list

Usage

Instantiate a Calendar with the necessary plugin:

import { Calendar } from '@fullcalendar/core'
import listPlugin from '@fullcalendar/list'

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

calendar.render()