Full calendar react 在headertoolbar中添加我们自己的div

问题描述 投票:0回答:0

我想添加我自己的 div,它在左侧的完整日历标题工具栏中有一个反应选择。

   <FullCalendar
      plugins={[ dayGridPlugin ]}
      initialView="dayGridMonth"
      weekends={false}
      events={[
        { title: 'event 1', date: '2019-04-01' },
      ]}
      headerToolbar={{
        left: '',
        center: 'prev,title,next',
        right: ''
      }}
    />

这是示例完整日历,例如,在左侧的 headertool 中,我需要添加自己的 div

    <div className='option-select'>
    <label >
        Pick a fruit:
        <select name="selectedFruit">
          <option value="apple">Apple</option>
          <option value="banana">Banana</option>
          <option value="orange">Orange</option>
        </select>
    </label>
    </div>

在 headertool left 中,我需要在其中添加这个 div。 可以吗?

javascript reactjs fullcalendar
© www.soinside.com 2019 - 2024. All rights reserved.