Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

✌🏽 In this repository, I tried to study Vue-cli + FullCalendar + GitHub Pages.

Notifications You must be signed in to change notification settings

yuu-eguci/vue-fullcalendar-study

Repository files navigation

vue-fullcalendar-study

✌🏽 In this repository, I tried to study Vue-cli + Vuetify + FullCalendar + GitHub Pages.

Demo

2022-07-28.iPad.vue-fullcalendar-study.mp4

TIL: Vue + FullCalendar

  • Vue + FullCalendar やるときはとりあえずここ↓を見て始める
  • そしてここの一覧↓から実現したい view を選ぶ
  • 具体的な実現方法を知りたいときは view > demo > CodePen と飛んで参照すると早い
  • 用語をおさえる
    • Timeline view の左の列は "Resource" という
    • バーは "Events" という
  • Timeline view を使うときは、ゼッタイ "Resource はどう定義すんの?" "Event はどう定義すんの?" ってなる。この Timeline view のデモページの Dev Tool > Network を見て、 json を取得している URL を見るのが早い
  • 以下は、それぞれ違う方法で実現しないといけない
  • これが本当に注意なんだけど、画面上の表示と実データは違う。画面上の表示は "in memory" であり、実データは raw data として保持されている。
  • ちょくちょく Calendar:: という表記を目にするが、 Vue では refs を使ってアクセスする。
    • const calendarApi = this.$refs.fullCalendar.getApi()
  • ただし Vue で Calendar API を使うことについては "Hopefully you won’t need to do it often" って書いてる。だから Vue では raw data をガンガン操作するほうがいいのかも。このリポジトリでは、 "Calendar API を使うほうが FullCalendar の思想に合っているのかな?" と思ってそちらで進めたけど。