safetwitch/src/components/SearchBar.vue

9 lines
455 B
Vue
Raw Normal View History

2023-04-16 12:37:23 -04:00
<template>
<div class="relative hidden md:block">
<label for="searchBar" class="hidden">Search</label>
<v-icon name="io-search-outline" class="text-black absolute my-auto inset-y-0 left-2"></v-icon>
<input type="text" placeholder="Search"
@keyup.enter="this.$router.push('/search?query=' + this.$refs.searchInput.value)"
class="rounded-md p-1 pl-8 text-black" ref="searchInput" />
</div>
</template>