我的VueJS应用程序使用axios向后端发出请求。假设有以下调用: const response = await ApiService.getDocuments(); 响应可能需要一些时间(例如5-10秒),因为服务器还会执行后台处理。现在,我想显示一个加载指示器,但仅当在2秒内没有响应时才显示。property shall be set if there is no response within 2 seconds
this.showProgressIndidcator = true; 我该如何用VueJS<