// 等DOM更新完
await this.$nextTick();
console.log(111);

相当于

this.$nextTick(()=>{
console.log(111);
})