Vue $nextTick

$nextTick

$nextTick在下一次dom更新结束之后执行

数据改变后,如果要基于新数据的dom去做一些事情,使用\(nextTick,操作\)nextTick的回调去处理

案例

    editTask(item) {
      if (Object.prototype.hasOwnProperty.call(item, "isEdit")) {
        item.isEdit = true;
      } else {
        this.$set(item, "isEdit", true);
      }
      this.$nextTick(() => {
        this.$refs.title.focus();
      });
    }
posted @ 2022-02-11 22:03  IslandZzzz  阅读(33)  评论(0编辑  收藏  举报