deemixer/src/js/components/TheSearchBar.vue

23 lines
358 B
Vue

<template>
<header id="search">
<div class="search__icon">
<i class="material-icons">search</i>
</div>
<input
id="searchbar"
autocomplete="off"
type="search"
name="searchbar"
value=""
placeholder="Search something or paste a link..."
autofocus
/>
</header>
</template>
<script>
export default {}
</script>
<style>
</style>