我想在 Fullcalendar(版本 5)上收听滚动事件以获取当前的scrollTime
. scrollToTime()
当我从应用程序的其他页面返回时,这将允许我跳转到那个时间。
我目前的方法是像这样添加一个本机 JS 滚动侦听器,并以某种方式使当前开始时间可见:
const fcScroller = document.getElementsByClassName('fc-scroller')[1];
fcScroller.addEventListener('scroll', () => {
console.log(this.$refs.fullCalendar);
});
一般来说,监听器工作得很好,但我如何从 Fullcalendar 获取当前可见时间?