This commit is contained in:
Nadar
2026-03-17 13:24:22 +03:00
commit 82e5ac9d81
554 changed files with 29637 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<template>
<div class="page-toolbar">
<slot name="prefix" />
<UiSearch
class="flex-1"
size="large"
:label="searchLabel"
:model-value="search"
@update:model-value="$emit('update:search', $event)"
/>
<slot />
</div>
</template>
<script setup>
defineProps({
searchLabel: { type: String, required: true },
search: { type: String },
})
defineEmits(['update:search'])
</script>
<style lang="scss">
.page-toolbar {
display: flex;
gap: 16px;
align-items: center;
}
</style>