vue2中使用
this.$nextTick(() => {
//你要执行的方法
})
vue3中使用
1、引入nextTick文章来源:https://www.toymoban.com/news/detail-702435.html
import { nextTick } from 'vue'
2、使用文章来源地址https://www.toymoban.com/news/detail-702435.html
setup () {
const passwordRef = ref(null)
nextTick(()=>{
passwordRef.value.focus()
})
return {
passwordRef
}
}
到了这里,关于vue3中使用nextTick的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!