vue的异步更新 $nextTick

作用

  • $nextTick:等 DOM 更新后, 才会触发执行此方法里的函数体

语法:

this.$nextTick(函数体)  

案例

{
this.$refs.inp.focus()
})

你可能感兴趣的:(Vue,vue.js,javascript,前端)