14 lines
222 B
Vue
14 lines
222 B
Vue
<script setup>
|
|
import FormControl from '@/Components/FormControl.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<FormControl
|
|
ref="root"
|
|
placeholder="Search (ctrl+k)"
|
|
ctrl-k-focus
|
|
transparent
|
|
borderless
|
|
/>
|
|
</template>
|