vue控制dom顯示出現後執行的操作

蜗牛使劲冲發表於2024-04-30
if (this.active === 1){
  this.monthDisplay = false
  this.dayDisplay = true
  this.timeDisplay = false
  this.chartDisplay = false
  this.$nextTick(()=>{
    this.initMonthChart();
  })
}

相關文章