WIP: added empty search bar and search component

This commit is contained in:
2025-10-10 13:59:59 +02:00
parent d6b19e531e
commit 4ac0f5aedf
6 changed files with 46 additions and 7 deletions

12
front/src/SearchBook.vue Normal file
View File

@@ -0,0 +1,12 @@
<script setup>
const props = defineProps({
searchterm: String
})
</script>
<template>
<div> You are searching for {{ searchterm }} </div>
</template>
<style scoped></style>