19 lines
427 B
Vue
19 lines
427 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="single-widget widget_search">
|
|
<h3 class="font-f-2">Search</h3>
|
|
<div class="search-form-widget">
|
|
<form action="#">
|
|
<input type="search" placeholder="Type keyword here">
|
|
<button type="submit" class="search-icon"><i class="fa-solid fa-magnifying-glass"></i></button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |