Files
monisuo/admin-web/src/layouts/components/Breadcrumb/index.vue

22 lines
264 B
Vue
Raw Normal View History

2026-03-22 01:07:31 +08:00
<template>
<div class="flex items-center text-sm">
<slot />
</div>
</template>
<style scoped>
:deep(.breadcrumb-item) {
&:first-child {
.separator {
display: none;
}
}
&:last-child {
.text {
opacity: 1;
}
}
}
</style>