开发者问题收集
我是 ES7 新手我想在 Vue.js 中使用 async/await这是我的代码created (){this.getA()console.log(2)this.getB()},methods : {getA (){console.log(1)},getB (){console.log(3)}}它返回123但是当我将它与 axios 一起使用时,created (){this.getA()con