作用
- $nextTick:等 DOM 更新后, 才会触发执行此方法里的函数体
语法:
js
this.$nextTick(函数体)
案例
js
{
this.$refs.inp.focus()
})