feat: improved search results in command palette

This commit is contained in:
Jannat Patel
2025-11-25 19:44:31 +05:30
parent c7915e2c3d
commit eab43a66cf
11 changed files with 474 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
<template>
<header
class="sticky flex items-center justify-between top-0 z-10 border-b bg-surface-white px-3 py-2.5 sm:px-5"
>
<Breadcrumbs :items="[{ label: __('Search') }]" />
</header>
<div></div>
</template>
<script setup lang="ts">
import { Breadcrumbs, TextInput } from 'frappe-ui'
</script>