VUE中使用vue.nextTick 报this.nextTick is not a function错误

onSubmit() {

      this.nextTick(() => {

})

}

少了$符号,

this.$nextTick(() => {})

原文地址:https://www.cnblogs.com/haimeimei/p/13228324.html