有三个函数:
const one=asycn()=>{
await xxx(()=>{
执行代码,有接口请求,请求时间不确定
})
}
const two=asycn()=>{
await yyy(()=>{
执行代码,有接口请求,请求时间不确定
})
}
const three=asycn()=>{
await zzz(()=>{
执行代码,有接口请求,请求时间不确定
})
}
我需要在onMounted中运行他们,并按照one,two,three顺序执行,必须是前一个执行完再执行后一个。下面的写法对吗?
onMounted(async ()=>{
await one()
await two()
await three()
})