赞
踩
<div v-show="!isLoading"> <router-view #="{ Component, route }"> <keep-alive> <component :is="Component" :key="route.name" v-if="route.meta.keepAlive" /> </keep-alive> <component :is="Component" :key="route.name" v-if="!route.meta.keepAlive" /> </router-view> </div> <div v-show="isLoading"> <van-loading type="spinner" size="64" color="#1989fa" /> </div> this.$router.beforeEach((to, from, next) => { this.isLoading = true; next(); }); this.$router.afterEach((to, from, failure) => { this.isLoading = false; }); .van-loading { display: flex; justify-content: center; align-items: center; height: 100vh; text-align: center; }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。