Nuxtでアプリを作成し、FullCalendar v5を使用したいのですがうまく表示されません。
カレンダー自体は表示されているのですが、日にちがでてこないです。(カレンダーの上のヘッダーとカレンダーの枠だけはある形です。)
Calendar.vueコンポーネントは以下のようになっていて、pagesのindex.vueで読み込んでいます。どうすれば日付が出てくるでしょうか?
js
1<template> 2 <FullCalendar 3 :options='calendarOptions' 4 :header="calendarHeader" 5 /> 6</template> 7 8<script> 9import FullCalendar from '@fullcalendar/vue' 10import interactionPlugin from '@fullcalendar/interaction' 11import timeGridPlugin from '@fullcalendar/timegrid' 12import dayGridPlugin from '@fullcalendar/daygrid' 13 14export default { 15 components: { 16 FullCalendar 17 }, 18 data() { 19 return { 20 calendarOptions: { 21 editable: false, 22 navLinks: false, 23 selectable: false, 24 events: this.events, 25 weekends: this.weekendsVisible, 26 plugins: [dayGridPlugin, timeGridPlugin, interactionPlugin], 27 initialView: "dayGridMonth", 28 }, 29 calendarHeader: { 30 left: 'prev,next today', 31 center: 'title', 32 right: 'dayGridMonth,timeGridWeek,timeGridDay,listWeek' 33 }, 34 } 35 } 36} 37</script>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。