vue3中使用nextTick

vue2中使用

this.$nextTick(() => {
    
    
   //你要执行的方法
})

vue3中使用在这里插入图片描述

1、引入nextTick

import {
    
     nextTick } from 'vue'

2、使用

 setup () {
    
        
    const passwordRef = ref(null)
    nextTick(()=>{
    
    
      passwordRef.value.focus()
    })
	return {
    
    
      passwordRef 
  	}
 }

猜你喜欢

转载自blog.csdn.net/m0_50207524/article/details/130004156