Bootstrap

vue使用 async/await解决异步问题方案汇总

最近在vue中遇到了异步请求的问题,之前的解决方法都是在.then中进行调用,忽然向尝试用async和await方案来解决异步,进行第一次尝试

<template>
  <div class="about">
    <h1>This is an about page</h1>
  </div>
</template>
<script
;