我已經建立了一個顯示日期表和相應日期的日歷,我想添加在月份之間更改的功能。我在這里制作的方法確實“有效”。當我單擊具有此功能的按鈕時,它可以追溯到一個月前。但只有一次,這是因為 selectedDate 沒有更新,所以當我嘗試使用我注釋掉的 console.log(selectedDate) 進行調試時,它仍然打印今天的日期。希望有人能在這里幫助我methods: { prevMonth() { var selectedDate = moment(new Date()); let futureMonth = moment(selectedDate.subtract(1, 'month')).startOf('month') selectedDate = futureMonth; //return console.log(selectedDate) this.days = [...Array(futureMonth.daysInMonth())].map((_, i) => { return { date: futureMonth.clone().add(i, "day"), workhours: Math.floor(Math.random()*10), overtime: Math.floor(Math.random()*10), flextime: 0, sickness: 0, vacation: 0, } }) }}
VueJS Calendar 來回一個月
波斯汪
2023-03-03 13:15:56