fix: breadcrumb style is affected by the globally-imported antd styles (#5627)

* 修复全局引入Antd时,面包屑的样式会受到影响的问题
This commit is contained in:
Netfan 2025-02-27 22:28:59 +08:00 committed by GitHub
parent 86ce65e0ea
commit 0e0661fe02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,6 +17,23 @@ const emit = defineEmits<{ select: [string] }>();
const forward = useForwardPropsEmits(props, emit);
</script>
<template>
<Breadcrumb v-if="styleType === 'normal'" v-bind="forward" />
<BreadcrumbBackground v-if="styleType === 'background'" v-bind="forward" />
<Breadcrumb
v-if="styleType === 'normal'"
v-bind="forward"
class="vben-breadcrumb"
/>
<BreadcrumbBackground
v-if="styleType === 'background'"
v-bind="forward"
class="vben-breadcrumb"
/>
</template>
<style lang="scss" scoped>
/** 修复全局引入Antd时ol和ul的默认样式会被修改的问题 */
.vben-breadcrumb {
:deep(ol),
:deep(ul) {
margin-bottom: 0;
}
}
</style>