我使用 vue js 2.5.17 和 vue 路由器作为前端,使用 laravel 作为后端。我有一个包含超过 1000 条记录的表,所以在它显示之前我想使用微调器或加载器来显示进度。我已经设法从引导程序中使用 spinner-grow,但即使显示数据,它也会继续显示。我做错了什么。
In the template I have this:
<div v-show="isloading=true" >
<div class="spinner-grow" role="status">
<span class="sr-only">Loading...</span>
</div>
In data if I have
isloading:true,
在我的方法中,我有
loadUser(){
axios.get("api/customer").then((
{data})=>(
this.users=data));
this.isloading=false;
console.log(this.isloading);
},