本文介绍: 使用场景:当需要提供更好的用户体验时,可以使用自定义的全局 loading 组件。优点:可以提供更美观、更易于使用的 loading 组件。此外,自定义的 loading 组件可以更好地控制其显示和隐藏。缺点:需要一定的开发成本。
1. 使用 v-if 和 v–show
使用场景:当需要根据条件显示或隐藏某个元素时,可以使用 v-if 和 v–show。
缺点:当条件判断比较复杂时,v-if 和 v–show 的嵌套层数过多,可读性差。
<template>
<div>
<div v-if="isLoading">加载中...</div>
<div v-else>内容</div>
</div>
</template>
<script>
export default {
data() {
return {
isLoading: true,
};
},
mounted() {
setTimeout(() => {
this.isLoading = false;
}, 2000);
},
};
</script>
2. 使用路由守卫(Navigation Guards)
使用场景:当需要在路由切换前后执行一些操作时,可以使用路由守卫。
优点:可以确保在路由切换过程中执行一些特定的逻辑,例如显示 loading 动画。
import { createRouter, createWebHistory } from 'vue-router';
const routes = [
{
path: '/',
name: 'Home',
component: () => import('@/views/Home.vue'),
},
];
const router = createRouter({
history: createWebHistory(),
routes,
});
router.beforeEach((to, from, next) => {
if (to.path === '/') {
next();
} else {
next({ path: '/' });
}
});
export default router;
3. 使用异步组件(Async Components)
优点:可以提高应用程序的性能,因为只有在实际需要时才会加载组件。
<template>
<div>
<AsyncComponent :is="isLoading" />
</div>
</template>
<script>
import { defineAsyncComponent } from 'vue';
export default {
data() {
return {
isLoading: true,
};
},
components: {
AsyncComponent: defineAsyncComponent(() => import('./AsyncComponent.vue')),
},
mounted() {
setTimeout(() => {
this.isLoading = false;
}, 2000);
},
};
</script>
4. 使用第三方库(如 element-plus、vant 等)提供的 loading 组件
使用场景:当需要提供更好的用户体验时,可以使用第三方库提供的 loading 组件。
优点:可以提供更美观、更易于使用的 loading 组件。
缺点:可能会增加项目的体积。
<template>
<div>
<el-loading v-if="isLoading" fullscreen></el-loading>
<div v-else>内容</div>
</div>
</template>
<script>
import { ElLoading } from 'element-plus';
export default {
data() {
return {
isLoading: true,
};
},
mounted() {
setTimeout(() => {
this.isLoading = false;
}, 2000);
},
components: {
ElLoading,
},
};
</script>
5. 自定义全局的 loading 组件
使用场景:当需要提供更好的用户体验时,可以使用自定义的全局 loading 组件。
优点:可以提供更美观、更易于使用的 loading 组件。此外,自定义的 loading 组件可以更好地控制其显示和隐藏。
缺点:需要一定的开发成本。
MyLoading
的自定义组件:
<template>
<div>
<my-loading v-if="isLoading"></my-loading>
<div v-else>内容</div>
</div>
</template>
<script>
import MyLoading from './MyLoading.vue';
export default {
data() {
return {
isLoading: true,
};
},
mounted() {
setTimeout(() => {
this.isLoading = false;
}, 2000);
},
components: {
MyLoading,
},
};
</script>
原文地址:https://blog.csdn.net/ACCPluzhiqi/article/details/134649489
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_2247.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。