Vue 是异步更新 DOM 的,想要在 dom 更新完成之后做某件事,可以使用 $nextTick
$nextTick:等 dom 更新后,才会触发执行此方法里的函数体
语法:
this.$nextTick ( () => {
// 业务逻辑
})
eg:
this.$refs.inp.focus ()