Files
rustfs-console/components/page-header.vue
T
overtrue 74cfe21316 feat: add option to show deleted objects in object list
- Add checkbox to toggle showing deleted objects
- Update UI layout to include search and show deleted option
- Add i18n translations for 'Show Deleted Objects' in en-US, tr-TR, and zh-CN
2025-11-20 19:57:50 +08:00

12 lines
333 B
Vue

<template>
<div class="sticky bg-background top-0 z-10 flex flex-col justify-between gap-2 lg:flex-row">
<div class="space-y-2">
<slot />
<slot name="description"></slot>
</div>
<div class="flex flex-1 flex-wrap items-center justify-end gap-2">
<slot name="actions" />
</div>
</div>
</template>