mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
22 lines
336 B
Vue
22 lines
336 B
Vue
<script setup lang="ts">
|
|
const input = useTemplateRef('input')
|
|
|
|
defineShortcuts({
|
|
'/': () => {
|
|
input.value?.inputRef?.focus()
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UInput
|
|
ref="input"
|
|
icon="i-lucide-search"
|
|
placeholder="Search..."
|
|
>
|
|
<template #trailing>
|
|
<UKbd value="/" />
|
|
</template>
|
|
</UInput>
|
|
</template>
|