[Vuejs]-Multiple data enters the full calendar at the same time

1πŸ‘

βœ…

 watch: {
    getBomData: {
      handler() {
        this.$nextTick(() => {
          this.initializeDraggable();
        });
      },
      deep: true,
      immediate: true,
    },
}

I deleted the above part and called it from mounted.

πŸ‘€user19395617

Leave a comment